So I have IntelliJ and love it, and have been using the python plugin for a while. But I noticed that they have PyCharm coming out in beta now. I haven't been using pycharm since I just use IntelliJ for everything, but is there a compelling reason to buy pycharm?

link|improve this question

67% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Right now PyCharm is quite a bit farther ahead in terms of functionality compared to the Python plugin for IntelliJ IDEA 9. Once we start the EAP for IntelliJ IDEA 10, we'll also release a new version of the Python plugin containing all the latest features of PyCharm, but we don't currently plan to backport the new features to the IDEA 9 version of the plugin. So, if you're OK with using EAP builds of IntelliJ IDEA, you shouldn't need to buy a separate license for PyCharm.

link|improve this answer
So, going forward, the intention is to keep the Plugin and Pycharm essentially in sync (with whatever delays are incurred due to release schedules)? So I should be able to do the same kind of django development in IDEA that I can do in PyCharm running side-by-side with say GWT for the front-end? – Ron Smith May 8 at 1:37
As of PyCharm 2.5, there are some features (creating virtualenvs, working with remote interpreters) that are available only in PyCharm but not in the plugin. It's likely that they will be supported in a later version of the plugin. As for Django development, the features of PyCharm and the plugin are in sync. – yole May 8 at 11:22
feedback

Since this question (and its accepted answer) are older and new versions of both IDEA and PyCharm are available, I figured it would be appropriate to add a new answer without modifying the existing "correct" one...

My company has licenses for both PyCharm 1.5 and IntelliJ IDEA 10.5 and I have used both for regular Python development and Django web app development. From my experience, I have not found any features of PyCharm which were not available to me using the Python plugin for IntelliJ.

This makes sense if you consider the fact thet the Python IntelliJ plugin is actually maintained by the PyCharm developers at JetBrains. The only catch to this is that there could be brand new features released to a new version of PyCharm which would not be immediately available to the plugin users but it probably wouldn't take them long to port them over.

If you are considering buying a license for IntelliJ, I would recommend to not also buy a PyCharm license as it seems like a waste of money. However, if you only do Python related development, I would recommend to only buy the PyCharm IDE instead because its licenses are cheaper than IDEA's.

link|improve this answer
Currently, the type inferencer of the plugin version seems to be less good than PyCharm's. Doesn't take epydoc into account for example. – ron Jan 2 at 12:55
feedback

PyCharm supports django and Google App Engine. The django support is really nice if you use django.

link|improve this answer
So does IntelliJ now have any django support at all? – weijiajun Jul 26 '10 at 22:35
1  
IDEA does have Django support through the Python plugin. – Jesse Webb Aug 5 '11 at 21:12
feedback

Right now Pycharm does a much better job of detecting and automatically configuring itself to run existing Google App Engine apps. Using IntelliJ and the plugin requires quite a few steps to get an existing project to run.

In PyCharm all you really have to do is configure a run configuration Script: /path/to/dev_appserver.py Script Parameters: /path/to/your/app

Make sure you configure Python 2.5.x as your interpreter.

For comparison: In IntelliJ you need to first add a Python module to your project, then add Google App Engine to that perspective. None of that is at all obvious as you are trying to do it as IntelliJ will want to create new module directories rather than use your existing code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.