美文网首页
Mac安装BeautifulSoup4出现的问题与pycharm

Mac安装BeautifulSoup4出现的问题与pycharm

作者: 大魂 | 来源:发表于2019-08-07 20:27 被阅读0次

    一、Mac安装BeautifulSoup4出现的问题

    直接在终端用pip安装时我总是出现
    Could not find a version that satisfies the requirement beautilfulsoup4 (from versions: )
    No matching distribution found for beautilfulsoup4
    这样的错误,查询时发现需要去python官网下载bs4的安装包,再进行一系列的查找安装 很麻烦。

    之后我试了一下命令:

    sudo easy_install beautifulsoup4
    

    执行后发现安装成功啦

    二、pycharm下通过提示BeautifulSoup导入失败解决方式

    之前是通过IDEA提示导包的,这次却发现BeautifulSoup导不成功,并提示
    SyntaxError: Missing parentheses in call to 'print'. Did you mean print(int "Unit tests have failed!...

    查询后发现都是通过setting来解决的,而Mac的pycharm没有setting。。。

    但是在pycharm的preferences中我找到了Project Interpreter~如下图所示:

    Project Interpreter

    点击图中的红圈圈“+”,输入Beautifulsoup ,就可以找到你要安装的插件啦。

    注意:Python2的选择BeautifulSoup进行安装,Python3的选择bs4进行安装。

    相关文章

      网友评论

          本文标题:Mac安装BeautifulSoup4出现的问题与pycharm

          本文链接:https://www.haomeiwen.com/subject/dkpadctx.html