Não é possível usar o comando “pip install scp” no Ubuntu 12.04

0

Eu sou novo no mundo do Ubuntu / Linux.

Enquanto tento executar o meu script python, recebo o seguinte erro:     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

Então, tentei executar o seguinte comando:

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

Como instalo o scp no Ubuntu 12.04?

    
por Haris Farooqui 28.07.2014 / 05:14

2 respostas

2

É apenas o nome - é chamado "scp", não "python-scp":

Use pip install scp

    
por Volker Siegel 28.07.2014 / 05:28
1

Aah! acabou por ser problema de PROXY! desabilitei, corri, pip instalei o scp habilitado de novo Alternativamente eu poderia ter feito: pip install --proxy="usuario: senha @ servidor: port" scp

    
por Haris Farooqui 04.08.2014 / 22:56