pip3 在 Ubuntu 中无法运行

pip3 在 Ubuntu 中无法运行

pip3我在Ubuntu中使用时出现以下错误:

mt@mt:~$ pip3 -V
pip 9.0.1 from /usr/local/lib/python3.5/dist-packages (python 3.5)
mt@mt:~$ python3
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> pip3 install face_recognition
  File "<stdin>", line 1
    pip3 install face_recognition
               ^
SyntaxError: invalid syntax
>>> 
KeyboardInterrupt
>>>  

答案1

您正在尝试在交互式 Python 会话中运行它。它是自己的命令。退出 Python shell ( Control+ D),然后从标准 Bash shell 运行该命令:

pip3 install --user face_recognition

请注意,你需要按照自述文件进行操作 密切。您需要做一些调整来安装 face_recognition 的依赖项。

相关内容