4
我想爲scientific analysis使用Orange包。安裝在x86_64 Ubuntu 12.04
上,使用Python 2.7.3
,運行良好,使用sudo easy_install orange
。但是,包似乎沒有可供直接使用:導入橙色返回「ImportError:no module named orange」
11:30:43 [email protected]:~$ python
Python 2.7.3 (default, Apr 20 2012, 22:39:59)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import orange
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named orange
>>>
然而,導入包,而從適當的dist-包子目錄下的Python的正常工作:
11:34:02 [email protected]:~$ cd /usr/local/lib/python2.7/dist-packages/Orange-2.5a4-py2.7-linux-x86_64.egg/Orange
11:34:32 [email protected]:/usr/local/lib/python2.7/dist-packages/Orange-2.5a4-py2.7-linux-x86_64.egg/Orange$ python
Python 2.7.3 (default, Apr 20 2012, 22:39:59)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import orange
>>> orange.__file__
'orange.so'
>>>
什麼問題?當Python從文件系統中的任何位置調用時,dist-packages中包含的其他軟件包可以正常工作。