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 回答