我在我的mac上使用python2作为默认的python路径。它已经安装了beautifulsoup。 我最近安装了python3,想在python3下安装beautifulsoup。我试图复制python3文件夹下的bs4文件夹,但我甚至找不到python3文件夹。
我用过
{{1}}
并返回' /Library/Frameworks/Python.framework/Versions/3.5/lib/python35.zip'。但该框架下没有版本3.5。
任何人都可以告诉我如何在python3下安装beautifulsoup? 因为我的默认路径是python2,每次运行pip install时,都会在python2下安装bs ..
感谢您的建议!
答案 0 :(得分:0)
您应该使用pip3
可执行文件:
pip3 install beautifulsoup4
您可能需要使用sudo
运行它。