我在python 2.7上安装了anaconda2,我在Windows 10上。 当我尝试使用pip时,语法错误即将到来。我使用基本的cmd来访问pip,即使没有环境变量的东西,它也无法正常工作。 谁能解释我做错了什么?
错误:
C:\Users\Yash gupta\Anaconda2\Scripts>python
Python 2.7.13 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:17:26) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> pip install bs4
File "<stdin>", line 1
pip install bs4
^
SyntaxError: invalid syntax
>>>
答案 0 :(得分:0)
你在python环境中使用pip。
您必须退出python并使用shell运行pip install bs4
。
如果您只想在特定的anaconda环境中安装库,请在source activate <yourEnv>
命令中午餐,然后使用pip install
。