私はubuntu/linuxの世界に不慣れです。
Pythonスクリプトを実行しようとすると、次のエラーが発生します:
[メールで保護]:/ 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
そこで、次のコマンドを実行しようとしました:
[email protected]:/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をインストールするにはどうすればよいですか?
承認された回答:
これは単なる名前です。「python-scp」ではなく「scp」と呼ばれます:
pip install scp
を使用します