The pycharm tag has no wiki summary.
26
votes
11answers
8k views
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, ...
16
votes
1answer
428 views
How to make pycharm break on My Exceptions
I'm new in Python and I'm trying to debug my first python program using PyCharm 1.5.
I want debugger to break when exception occurs in my code (and only in mine).
For now the situation is ...
15
votes
7answers
3k views
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.
...
12
votes
1answer
563 views
How can I tell PyCharm what type a parameter is expected to be?
When it comes to constructors, and assignments, and method calls, the PyCharm IDE is pretty good at analyzing my source code and figuring out what type each variable should be. I like it when it's ...
7
votes
2answers
305 views
PyCharm Javascript Debugging
Is Javascript debugging powered by Firefox and Chrome available in PyCharm 1.5?
If so, can it run effectively alongside the Python / Django debugger?
If not, is there a way to use PyCharm with ...
6
votes
2answers
469 views
How to get PyCharm to auto-complete code in methods?
When I'm using a 3rd party l
ibrary such as boto, PyCharm seems to be able to auto-complete quite nicely
However, as soon as I define a function of my own, auto-complete breaks down inside that ...
5
votes
1answer
1k views
PyCharm manage.py runserver error
Sorry to ask a noob question but I have no idea why this is happening.
I've just reinstalled Django 1.3, and am trying PyCharm for the first time. When I run python manage.py runserver from Terminal ...
5
votes
3answers
790 views
Autocomplete in PyCharm for Python compiled extensions
When writing Python code using compiled extensions (the OpenCV Python bindings, for example), PyCharm doesn't seem to be aware of their availability. The imports are marked with a grey underline, ...
5
votes
4answers
1k views
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 ...
4
votes
2answers
715 views
PyCharm and filters for external tools
I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms.
...
4
votes
1answer
671 views
Does anyone have the monokai theme for PyCharm?
I really miss the monokai theme!!! and really can't stand the white background.
Does anyone have a PyCharm schema for monokai by chance? :)
4
votes
4answers
3k views
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 ...
3
votes
1answer
78 views
PyCharm: Forcing Django Template Syntax Highligting
Quick one, I've just installed PyCharm, and have opened an existing project with multiple apps.
When I open django templates, they are highlighted as if plain HTML, i.e. {% block %} elements and ...
3
votes
1answer
225 views
Require js ruins code navigation
The question/problem is following.
require.js states the way of defining objects inside modules with define([requiremens],object) as best way.
So every page or other js file will do require() call ...
3
votes
0answers
134 views
Pycharm + Django 1.3 + STATIC_URL in templates = Unresolved static reference
PyCharm (1.3 and 2 beta) in my Django 1.3 project throws a lot of "unresolved static reference" errors when inspecting my templates for script and style includes.
In an outdated PyCharm doc, I found ...
3
votes
2answers
87 views
How to use PyCharm in 32 bit mode
There is a way to run Pycharm in 32bit mode for reducing memory consumption. Where can I set that. (Pycharm has documented this, but I can't find the google phrase to get me to that page.)
3
votes
1answer
75 views
Does pycharm have any tool for time-tracking
I just checked out http://code.google.com/p/rabbit-eclipse/ for eclipse to do time tracking and stuff automatically. Does pycharm have something similar ?
3
votes
2answers
367 views
How do I configure PyCharm to run py.test tests?
I want to start writing unit tests for my Python code, and the py.test framework sounds like a better bet than Python's bundled unittest. So I added a "tests" directory to my project, and added ...
3
votes
3answers
171 views
UnicodeDecodeError while using cyryllic
I have a module which contains only (it's only example. Problem is in much bigger module):
# -*- coding: utf-8 -*-
"януари"
While execution I get:
File "C:\Program Files\JetBrains\PyCharm ...
3
votes
2answers
229 views
Should the .idea folder be kept under source control? [closed]
Possible Duplicate:
Intellij Idea 9, what folders to check into (or not check into) source control?
The question is general, although specifically I'm interested right now in PyCharm, not ...
3
votes
1answer
671 views
PyCharm 1.1 - using specific settings for django test runner
Does anyone have any experience with using different settings files for the Django test runner in PyCharm?
My project is composed as follows:
+penguinproject
+apps
+settings
--__init__.py
...
2
votes
1answer
39 views
Is there a way to explicitly tell PyCharm what class an attribute is an instance of?
I recently picked up PyCharm and I'm used to a feature from Wing where you can tell the IDE what class a particular identifier (variable, attribute, whatever) will be. For example:
my_object = ...
2
votes
1answer
26 views
How to move focus to another “tab group” in Intellij IDEs
IDEs based on the IntelliJ platform let you split the editor in various ways, but I don't see an option to move focus from one editor to another using just keyboard (something like other-window from ...
2
votes
2answers
56 views
Pycharm: multiple tabs all with same name; how to highlight active file in project explorer?
With a number of different apps that all have their own version of "admin.py" and "views.py," etc., I have a hard time telling which one I have open when looking at the tabs (the tabs don't have the ...
2
votes
2answers
147 views
How to get Intellij-idea close Flask dev server properly?
I use IDEA 10.5 for my Flask experimentation. Flask has en embedded test server (like Django does)
When I launch my test class, the dev server launches as well on port 5000. All good.
* Running ...
2
votes
1answer
70 views
PyCharm right-click on folder -> context menu: how to change from “hold down” to “toggle”?
The latest oddity with this IDE is the default behaviour of right-clicking on a folder: it requires one to hold down the mouse button to navigate the menu, with selection occurring upon release.
Does ...
2
votes
1answer
355 views
pyCharm Django problem
I am using PyCharm. And in models.py I have such model:
class TaricCode(models.Model):
code = models.IntegerField(primary_key=True, verbose_name="Code")
description = ...
2
votes
2answers
1k views
pycharm: DJANGO_SETTINGS_MODULE is undefined
I am using Pycharm IDE and when I run any file.py I get this error:
"..raise ImportError("Settings cannot be imported, because environment variable %s is undefined." % ENVIRONMENT_VARIABLE)
...
2
votes
1answer
274 views
Unable to load DLL python module in PyCharm. Works fine in IPython
When I use the IPython included with Enthought Python Distribution, I can import the pyvision package just fine. However, when I try to import pyvision inside of PyCharm 1.2.1, I get the following ...
2
votes
1answer
1k views
PyCharm and PYTHONPATH issue: how and why PyCharm alter Python import logic?
I have a PyCharm 1.2.1 on Windows. I have to edit different branches of the same project - somewhat heavy branches, because they live in different folders on disk - say it to be c:\apps\alpha and ...
2
votes
2answers
146 views
How can I see what each key does in PyCharm?
I'm looking for something like "M-x describe-key" in emacs.
I see Help > Default Keymap Reference and Settings > Keymap but both of these are grouped and sorted by topic. I want something ...
2
votes
2answers
945 views
JetBrains PyCharm is great, but I don't want to spend the $99
I'm sure this question is a great candidate for being closed as not being strictly a programming question but here goes.
I started developing a simple toy website using Django. The IDE I decided to ...
2
votes
2answers
488 views
Django with IronPython and VS2010?
I have just checked JetBrains products page and noticed they have a new product - PyCharm that supports Django out of the box for Python development.
Is there a plug-in or a native support for Django ...
2
votes
2answers
2k views
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 ...
1
vote
1answer
20 views
subversion eclipse and multiple repositories
i have a fun svn problem. With eclipse, i have the svn plugin, and that works all well and good. Or did, until a few days ago, when i setup a repo on a remote server for a different project (on a ...
1
vote
1answer
26 views
Shortcut to open resource search in PyCharm
In Eclipse I'm very used to the Command+R key that opens up a project search box that does a Find-As-You-Type on a file name.
So to jump from one file in a project to any other file, it's as simple ...
1
vote
1answer
32 views
PyCharm - $PATH on OS X
i need to debug an py-script in PyCharm that makes use of unix binaries like "which, grep" and so on.
If i start the py-script from Terminal (bash), unix binaries are found and all works like ...
1
vote
1answer
185 views
Using virtualenv in Pycharm as Django IDE
Please help me on this. I am doing this on Fedora 16.
My virtual environment is /home/username/Desktop/.pythonenv
Now, notice the dot. Because it is a hidden directory, I had to make a symbolic ...
1
vote
2answers
116 views
Is there a Shortcut in Pycharm or Sublime Text 2 for Jump out of matching brackets?
Is there a shortcut in Pycharm or Sublime Text 2 for jumping out of matching brackets and " or ' pairs?
Now I out it by press left, agony.
1
vote
1answer
91 views
PyCharm Failing to Properly Create a Django Project
I am an experienced Java developer looking to get experience in Django and Python in general. I decided to start with the official Django tutorial but I am running into problems within the first few ...
1
vote
1answer
72 views
How to stop PyCharm's 'smart' tab behaviour
The default tab (as in, white space) behaviour of PyCharm appears prevents you from inserting additional tabs where it doesn't think it is appropriate.
Could someone advise how to turn this behaviour ...
1
vote
1answer
125 views
PyCharm (1.5.4) and Panadas 0.6.0 - ImportError: No module named data
I am using PyCharm (1.5.4) as my python IDE on MacOS 10.6.4. I am tinkering with some code to manipulate stock price data. As part of that I want to import price data from yahoo by using the ...
1
vote
1answer
53 views
How can I detect if IntelliJ IDEA or PyCharm is installed and get the path to the exe on Windows by using Python?
I am looking for a piece of code Python code that would give me the path to IntelliJ IDEA or PyCharm exe if they are installed.
Usually, I would want to detect the same for Eclipse but it seems that ...
1
vote
1answer
93 views
PyCharm to show declaration bubbles like PyDev in Eclipse
In Eclipse/PyDev, when mouse over or click on a class or an object, there will be a bubble with brief declaration code displayed. Can PyCharm do the same?
1
vote
1answer
81 views
Pycharm: enable tooltip for variables / names / tokens with mouse hover?
I'm looking for something similar to how Visual Studio will show tooltips when hovering the mouse over anything in the editor (type information, method details, other useful information, etc.). Is ...
1
vote
2answers
100 views
PyCharm smart indent not working?
Perhaps I misunderstand what smart indent is. When I type:
urlpatterns = patterns('some_model.views',
after pressing enter, would the next line not be a place one would expect a "smart indent"? ...
1
vote
1answer
190 views
Run php file in PhpStorm
1-How I can instantly run current php file in PhpStorm? (consider a php class file, I want just create some instants and test their methods)
(I do not want to switch to browser )
2-How can I execute ...
1
vote
2answers
162 views
Using the emacs bindings in pycharm in OS X Lion
I am trying to use the emacs keybindings in Pycharm 1.5 in OS X 10.7. They all work except that Alt-B inserts a beta symbol rather than moving back a word. It's puzzling since Alt-F does correctly ...
1
vote
1answer
105 views
PyCharm code completion: how to prevent space key and “dot” from committing lookup item
How does one disable the space key from committing the suggestion when using code completion?
If I attempt to name something "req" for example, when I'm done typing, and enter a "space," I wind up ...
1
vote
1answer
521 views
Comparison: Pycharm vs WingIDE [closed]
Which one do you prefer?
Which features does one have that the other doesn't (in their latest versions, of course)?
Both IDEs have trial versions at their respective websites:
http://wingware.com/
...