2016-04-04 9 views
1

を得たが、私はまだ私のスクリプトを実行するとき、私はエラーを取得インストールモジュールは、まだ私は</p> <p>sudoのピップはピーウィーインストールを使用してPython用ピーウィーのモジュールをインストールしようとしたエラー

sudo pip install peewee 
[sudo] password for mounarajan: 
The directory '/home/mounarajan/.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/mounarajan/.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 peewee 
    Downloading peewee-2.8.0.tar.gz (470kB) 
    100% |████████████████████████████████| 471kB 123kB/s 
Installing collected packages: peewee 
    Running setup.py install for peewee ... done 
Successfully installed peewee-2.8.0 

このPythonインタプリタ

を試してみました
import peewee 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: No module named peewee 
+0

pythonをコマンドラインで起動し、peeweeをimpoしようとすると、それが動作すれば、あなたのideのpython binは別のものになります – user1767754

答えて

3

パッケージのインストール時に「sudo」を使用しないでください。

pip install peewee 
-2

関連する/重複した回答がいくつかあります。しかし私は個人的には間違いなくsudoを使っていくつかのpythonパッケージ/公式をインストールし、許可を得てまとめました。

$醸造医師

はあなたの友達です。あなたはあなたの問題を解決するための良い提案を見つけるでしょう。

もう1つの提案は、Python用のvirtualenvです。あなたの好きなチュートリアルや記事をGoogleで扱うことができます。

関連する問題

 関連する問題