无法在Ubuntu 11.4中启动许多Python程序

时间:2012-01-11 19:11:17

标签: python ipython

我最近开始使用Ubuntu。我是一位经验丰富的程序员,多年来一直使用“旧”Python。但是,在Python 3.2中,当我尝试运行从.eg安装的几个不同程序之一时,我收到类似于下面粘贴的错误消息。

在这里,我正在尝试启动IPython。但错误也发生在其他人身上。

Traceback (most recent call last):

File "./ipython3", line 9, in <module>

load_entry_point('ipython==0.12', 'console_scripts', 'ipython3')()

File "/usr/local/lib/python3.2/dist-packages/distribute-0.6.24-py3.2.egg/pkg_resources.py", line 337, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)

File "/usr/local/lib/python3.2/dist-packages/distribute-0.6.24-y3.2.egg/pkg_resources.py", line 2279, in load_entry_point
raise ImportError("Entry point %r not found" % ((group,name),))

ImportError: Entry point ('console_scripts', 'ipython3') not found

我搜索了这个错误,发现其他用户遇到了类似的问题,但据我所知,没有人报告过真正的解决方案。

1 个答案:

答案 0 :(得分:0)

我的猜测是你使用easy_installs混合发行版安装。

尝试和使用Python的最佳方法可能是使用分离的&#34;沙盒&#34;。使用virtualenv(它是几种方法之一),可以按如下方式完成:

$ virtualenv -p /usr/bin/python3.2 --distribute MYPYTHON32
Running virtualenv with interpreter /usr/bin/python3.2
New python executable in MYPYTHON32/bin/python3.2
Also creating executable in MYPYTHON32/bin/python
Installing distribute...

然后你可以安装你想玩的任何东西:

$ cd MYPYTHON32
$ bin/easy_install ipython

我没问题:

$ bin/ipython3
Python 3.2 (r32:88445, Dec  8 2011, 15:26:58) 
Type "copyright", "credits" or "license" for more information.

IPython 0.12 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]:
关于virtualenv的

Documentation会给你更多提示。这种方式可能的安装不会干扰系统python,您始终可以控制在沙箱中安装的内容。