无法在 ubuntu 12.04 中使用“pip install scp”命令

无法在 ubuntu 12.04 中使用“pip install scp”命令

我是 ubuntu/linux 世界的新人。

尝试运行我的 python 脚本时出现以下错误:root@ubuntu:/home/haris/Downloads/# python install.py

Traceback (most recent call last):
File "install.py", line 35, in <module>
import scp
ImportError: No module named scp

所以我尝试运行以下命令:

root@ubuntu:/home/haris/Downloads/ee-scale/tools/os-installer# pip install python-scp
Downloading/unpacking python-scp
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement scp
No distributions at all found for scp
Storing complete log in /root/.pip/pip.log

如何在 ubuntu 12.04 上安装 scp?

答案1

这只是名字 - 它被称为“scp”,而不是“python-scp”:

使用pip install scp

答案2

啊!原来是代理问题!禁用它,运行,pip install scp 再次启用它或者我可以这样做:pip install --proxy="user:password@server:port" scp

相关内容