红联Linux门户
Linux帮助

Ubuntu系统上Python2和Python3共存时安装BeautifulSoup4

发布时间:2016-04-28 15:11:19来源:linux网站作者:阿智智

问题:

我的电脑安装的系统为Ubuntu 14.04,同时安装有Python 2.7.6和python 3.4.0,我需要在python 3.4.0上面安装BeautifulSoup4,而直接采用下面命令:

sudo apt-get install python-bs4

则将BeautifulSoup4安装在了python 2.7.6上面。采用什么方法将其安装在与python2.7.6共存的python 3.4.0上面呢?


方法:

1.先使用命令sudo apt-get install python3-pip安装上pip3;
2.然后使用sudo pip3 install beautifulsoup4,即可安装成功。

采用以下命令检验是否安装成功:

python3
> from bs4 import BeautifulSoup

如果没有什么错误的提示信息,即表示安装成功。


总结:

捣鼓了好久,之所以没有成功,是因为我在使用sudo pip3 install beautifulsoup4的时候忘记了加sudo。所以以后在使用的时候千万要小心。


本文永久更新地址:http://www.linuxdiyf.com/linux/20174.html