2017-10-31 21 views
0

ローカルシステムに仮想環境をインストールしようとすると、このエラーが発生します。この問題を解決するために私を助けてください。仮想環境インストールエラー

$ pip -V 
pip 9.0.1 from /home/sysadmin/.local/lib/python2.7/site-packages (python 2.7) 

$ sudo pip install virutalenv 
sudo: unable to resolve host sysadmin-Veriton-M200-H61 
The directory '/home/sysadmin/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. 
The directory '/home/sysadmin/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. 
Collecting virutalenv 
    Could not find a version that satisfies the requirement virutalenv (from versions:) 
No matching distribution found for virutalenv 

答えて

2

あなたはタイプミスがあります。それはで、virutalenvではありません。

また、pip.localにインストールされているため、virtualenvsudoを使用してインストールしないでください。

ちょうど

$ pip install --user virtualenv 

行う必要があり、かつ(メモリが提供する場合~/.local/bin、しかしfind ~ -type f -name virtualenvはあなたのためにそれを見つけるでしょう)virtualenvは、ユーザーディレクトリで利用できるようになります。

関連する問題