pyCharm中安装了两个版本的python的beautifulsoup安装

时间:2016-07-28 11:11:32

标签: python pycharm

我使用PyCharm编写Python,首先我使用Python 2.7.12配置PyCharm,然后在2.7.12环境下安装了Beautiful Soup包。

然而,我现在已经在PyCharm中安装了python 3.5.2并且我想在PyCharm中使用3.5.2的Beautiful Soup,但我无法导入bs4,因为解释器无法找到其中的Beautiful Soup包2.7.12包文件夹。

所以我尝试在3.5.2控制台中my.df$V2 <- gsub("\\n", replacement, my.df$V2) ,但它告诉我pkg已经安装在2.7.12文件夹中。那么如何在PyCharm中导入3.5.2中的Beautiful Soup?

enter image description here

1 个答案:

答案 0 :(得分:0)

为了确保为正确版本的python安装软件包,可以使用pip作为模块:

python3.5 -m pip install [package]

所以对于bs4:

python3.5 -m pip install beautifulsoup4