我安装了python 2.7,python3.5.当我输入"pip install beautifulsoup4"它告诉我,它已经安装在python2.7/site-package目录中.
但是如何将其安装到python3目录中呢?
我认为pip3将满足您的需求,在终端上使用以下命令:
pip3 install beautifulsoup4
见文档
以root身份运行:
apt-get install python3-bs4 #or pip3 install beautifulsoup4
然后像这样导入它:
import bs4