0

私は Python の初心者ですが、インストールしたこのエラーについて教えてください。

python 3.3 pip 1.4

NagAcondaしかし、pip経由でインストールできません

私のマシンはWindows 7です

エラーは以下の通りです:-

   C:\Python33>"c:\python33\scripts\pip.exe" install NagAconda
   Downloading/unpacking NagAconda
   Downloading NagAconda-0.2.1.tar.gz (235kB): 235kB downloaded
   Running setup.py egg_info for package NagAconda
   Traceback (most recent call last):
   File "<string>", line 16, in <module>
   File "c:\users\rajars~1\appdata\local\temp\pip_build_rajarshid\NagAconda\setup.py", line 4, in <module>
   import NagAconda
   File ".\NagAconda\__init__.py", line 19, in <module>
   from Plugin import *
   ImportError: No module named 'Plugin'
   Complete output from command python setup.py egg_info:
   Traceback (most recent call last):

   File "<string>", line 16, in <module> 

   File "c:\users\rajars~1\appdata\local\temp\pip_build_rajarshid\NagAconda\setup.py", line 4, in <module>

   import NagAconda

   File ".\NagAconda\__init__.py", line 19, in <module>

   from Plugin import *

   ImportError: No module named 'Plugin'

   ----------------------------------------
   Cleaning up...
   Command python setup.py egg_info failed with error code 1 in c:\users\rajars~1\appdata\local\temp\pip_build_rajarshid\NagAconda
   Storing complete log in C:\Users\rajarshid\pip\pip.log

   C:\Python33>pause
   Press any key to continue . . .
4

1 に答える 1

1

NagAconda パッケージが壊れているようです。

モジュール プラグインが独自のコードである場合、このモジュールがパッケージに含まれていないか、適切に呼び出されていません。

例えば

from NagAconda import Plugin 

代わりは。

いずれにしてもパッケージが壊れていると強く思います

于 2013-09-20T07:05:41.317 に答える