Question

J'ai fait un virtualenv basé sur Python3.2 et installé ipython 0,12 en elle. PyCharm est censé reconnaître ipython automatiquement, mais il ne fonctionne pas: http://devnet.jetbrains.net/servlet/JiveServlet/showImage/2-5452184-25073/Schermafbeelding+2012- 02-18 + om + 10.44.22.png

Les indices?

Était-ce utile?

La solution

I was having the same issue with PyCharm not recognizing my iPython install. I am running EPD 7.2.2 on OS X 10.7.3 with PyCharm 2.0.1, and using virtualenvwrapper.

The workaround that worked for me was to reinstall iPython after creating my virtualenv.

Try running this:

workon <myvirtualenv>
pip install --upgrade git+git://github.com/ipython/ipython.git

Then add your directory as a "Python Interpreter" in PyCharm, and setting the "Project Interpreter" to .

Curious to hear if that works for you too.

Cheers,

Nolan

Autres conseils

In my Pycharm,I use the fellow:

workon flask
pip install ipython

and then in the Project Interpreter,you can see the package ipython v.2.3.1 display.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top