zoukankan      html  css  js  c++  java
  • pip安装BeautifuSoup

    安装BeautifuSoup出错,错误如下:

    pip install BeautifulSoup
    
    Collecting BeautifulSoup
      Using cached BeautifulSoup-3.2.1.tar.gz
        Complete output from command python setup.py egg_info:
        Traceback (most recent call last):
          File "<string>", line 1, in <module>
          File "C:UsersEricAppDataLocalTemppip-build-frr2rg68BeautifulSoupsetup.py", line 22
            print "Unit tests have failed!"
                                          ^
        SyntaxError: Missing parentheses in call to 'print'
    
        ----------------------------------------
    Command "python setup.py egg_info" failed with error code 1 in C:UsersEricAppDataLocalTemppip-build-frr2rg68BeautifulSoup
    

    baidu了一个把,发现在python3上安装BeautifulSoup 应该使用pip install BeautifuSoup4.

    C:UsersEric>pip3 install BeautifulSoup4
    Collecting BeautifulSoup4
      Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out. (read timeout=15)",)': /simple/beautifulsoup4/
      Downloading beautifulsoup4-4.6.0-py3-none-any.whl (86kB)
        100% |████████████████████████████████| 92kB 41kB/s
    Installing collected packages: BeautifulSoup4
    Successfully installed BeautifulSoup4-4.6.0
    
  • 相关阅读:
    JS 数组总结
    JS 数据类型及其判断
    CSS 优先级
    正则表达式及其使用例子
    常见的图片格式
    React 箭头函数的使用
    手动搭建 react+webpack 开发环境
    JS 函数参数及其传递
    JS 中的 this 指向问题
    JS 中函数的 length 属性
  • 原文地址:https://www.cnblogs.com/diaolanshan/p/7906442.html
Copyright © 2011-2022 走看看