我是Python上的新手,请关于我已经安装的这个错误帮助我
python 3.3
pip 1.4
但无法通过pip安装NagAconda
我的机器是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 . . .
答案 0 :(得分:1)
看起来NagAconda包破了。
如果模块插件是他们自己的代码,则该模块在包中丢失或者没有很好地调用。
例如
from NagAconda import Plugin
代替。
无论如何我强烈认为包裹已经坏了