在Python中使用pip命令安装模块

时间:2017-04-08 18:23:20

标签: python python-2.7

我尝试安装BeautifulSoup库进行HTML解析。我尝试使用pip命令。我已经完成了预赛。我添加C:\ Python27;在PATH中。我运行它输入python并导入pip。一切都好。我输入

>>>pip install beautifulsoup4
      File "<stdin>", line 1
        pip install beautifulsoup4
                  ^
>>>python -m pip install beautifulsoup4
      File "<stdin>", line 1
        python -m pip install beautifulsoup4
                    ^

我会错过哪一步?我弄不清楚。 The site of the library.

3 个答案:

答案 0 :(得分:1)

name Login.php - class Login extends CI_Controller 应该从您的 OS shell执行,而不是从Python shell执行。 E.g。

pip

C:\>python -m pip install beautifulsoup4

您也可以直接运行you@machine$ python -m pip install beautifulsoup4 而不是pip

答案 1 :(得分:1)

pip是它自己的命令,不是从python解释器运行的。

答案 2 :(得分:0)

ElareΘανάση很容易:
cd C:\Python27\Scripts
pip install beautifulsoup4