我目前正在开发一个使用Python 3.2.3的项目,并考虑在IPython中对我的代码进行一些测试,但似乎IPython不支持我正在使用的python版本。
尝试在我的Ubuntu计算机上运行Ipython时出现以下ImportError。
ImportError: IPython requires Python version 2.7 or 3.3 or above.
答案 0 :(得分:3)
您可以找到关于删除2.6和3.2支持here的一些讨论。其中一个主要原因是3.2不支持2.x风格的unicode字符串 - u"I love IPython!"
,而3.3不支持。{{1}}。这一改变使得在单个代码库中支持2.7和3.3+成为可能。
答案 1 :(得分:-1)
IPython需要Python 2.7或≥3.3。
如果您需要使用Python 2.6或3.2,您可以找到IPython 1.0 here。
PS:
deadsnakes PPA有新旧python版本的包:
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.3