如何在Fedora 18中将IPython与Python3.3结合使用


1

我的PC上同时安装了Python 3.3和Python 2.7。使用软件安装程序在Fedora 18上安装IPython 0.13.1之后,它默认为Python 2.7。

我对Linux和Python的经验都很少(尝试过几次)。我看过IPython配置文件,但仍然遇到困难。任何帮助/指针表示赞赏。

Answers:



2

您不需要在IPython中配置要使用哪个Python。IPython只是一个软件包,因此您必须为每个要导入它的Python单独安装它。如果您的发行版没有在Python 3上安装IPython的软件包,则可以始终轻松/ pip安装它:

pip-3.3 install ipython

(注意:您可能需要先安装pip,可能需要加上sudo,或做--user,等等)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.