pycharm

Any early impressions of PyCharm for Python, Django and web development?

I just discovered PyCharm, which is a Python/Django/web IDE currently in "public preview" being developed by JetBrains. Has anyone been using it for the last month it has been available, and if so, what are your impressions of it compared to other IDEs that are available such as: Komodo Wing IDE Eclipse + Pydev Aptana ...

Hidden features of PyCharm

I know PyCharm is young IDE but id like to know if you guys have found some candy while using it. I know from experience that JetBrains IDE's are filled with candy and can't wait to find it all. Please list your tips, perhaps something you did not first expected to be there. ...

Does anyone have a "dark" pycharm schema file?

I'm trying out pycharm for django development and I can't stand the white background. Can someone provide a place to download a schema file? Switching all the colors manually is tedious and time consuming. Is it maybe possible to use komodo schemas? ...

Comparison of IntelliJ Python Plugin or PyCharm

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? ...

subprocess.Popen() has inconsistent behavior between Eclipse/PyCharm and terminal execution

The problem I'm having is with Eclipse/PyCharm interpreting the results of subprocess's Popen() differently from a standard terminal. All are using python2.6.1 on OSX. Here's a simple example script: import subprocess args = ["/usr/bin/which", "git"] print "Will execute %s" % " ".join(args) try: p = subprocess.Popen(["/usr/bin/which...

Python "ImportError: No module named" Problem

I'm running Python 2.6.1 on Windows XP SP3. My IDE is PyCharm 1.0-Beta 2 build PY-96.1055. I'm storing my .py files in a directory named "src"; it has an __init__.py file that's empty except for an "__author__" attribute at the top. One of them is called Matrix.py: #!/usr/bin/env python """ "Core Python Programming" chapter 6. A si...

How do you run nosetest from pycharm?

How do you execute nosetest from pycharm to run all unit tests? I know that pycharm supports python's unittest and py.test and that they will properly support nosetests in pycharm 1.1 but I was wondering if there was a work around. ...