不能在Jupyter Notebook中使用pip

时间:2017-08-19 03:10:36

标签: python machine-learning pip

我想在Jupyter Notebook中使用pip,但是当我运行代码时有一个SyntaxError

pip install hyperopt
 File "<ipython-input-3-156c4fe098ed>", line 1
pip install hyperopt
          ^
SyntaxError: invalid syntax

error image

1 个答案:

答案 0 :(得分:1)

要从笔记本单元格中运行shell命令,必须在命令前放置!

!pip install hyperopt