PyCharm is a proprietary integrated development environment (IDE) for Python. It is developed by JetBrains for Windows, Mac OS X and Linux.
1
vote
1answer
27 views
PyCharm can't see class from pyTables
I've actually asked this question for PyDev and got a working answer: PyDev can't see class from PyTables
Basically, pytables must be added to builtins, and there is an option in pydev for this. ...
0
votes
1answer
47 views
IntelliJ 12 Python - Issues with manage.py Tasks
I'm currently looking for a nifty Python/Django IDE and came across PyCharm from JetBrains which I tested for about a week now and I'm quite impressed by this piece of software.
However, I've read ...
0
votes
0answers
35 views
ImproperlyConfigured: Error loading MySQLdb module pycharm
I'm getting this error when trying to launch my project, I think there is a mismatch in the architecture of the mysql with the python version? However I can't point out what exactly is wrong, and how ...
0
votes
1answer
25 views
pycharm and unittesting - structuring project
I am using pycharm at one of my university projects and I wanted to integrated it with unittest module, but I have a problem with structuring my project
Part of this project involves generating ...
0
votes
0answers
29 views
Import and Environment Variable issues using Python/Django in PYcharm on Ubuntu
I am working through the PYcharm tutorial, which sets up a polling site, as my first Python/Django project. I am new to this so if I am asking silly questions I apologize in advance. In the admin.py ...
0
votes
0answers
17 views
How to add project reference and project path like eclipse in pycharm?
I work on OpenERP and I decide lauchpad-7.0 is project to reference and each specific project I reference to lauchpad-7.0 and in laundpad I add project path like addons, server, web, ...
I work in ...
0
votes
0answers
32 views
Compiling and running an open source Python project in PyCharm
I come from a .NET background and I'm trying to get Nicotine+ running using PyCharm on a Windows 7 machine. First of all, is this theoretically possible? I've installed Python and all the project ...
1
vote
2answers
24 views
PyCharm warning: “format doesn't require a mapping”. What does it mean?
For some reason PyCharm warns me about this line of code. I'm just logging the content of a dictionary and gets a warning: format doesn't require a mapping
self._logger.info('Device channels set: %s' ...
0
votes
1answer
38 views
Gensim ImportError in PyCharm: No module named scipy.sparse
I am on Mac OS X 10.8.3 (Mountain Lion) and am trying to run a script in PyCharm. Python 2.7.2 is installed, I have installed Canopy and Gensim. I just do not understand what could be causing the ...
0
votes
1answer
72 views
Pycharm - Django Console wrong path (Windows Host, Linux Guest)
I've been trying out PyCharm for the Django Tutorial project lately and I ran into a problem with the Django Console (and manage.py tasks).
I'm running Windows 7 with PyCharm 2.7.2 and use a Ubuntu ...
1
vote
1answer
19 views
PyCharm How to import module from network share
I'm running PyCharm 2.7.2 on Windows7 with interpreter v2.7.4
I need to import a module that lives on a network share. I believe the PyCharm way of doing this is to add another 'Content Root'. ...
0
votes
1answer
33 views
Managing Django project with mercurial and PyCharm - choosing root folder
What is best/preferred/right/conventional way:
- Root of repository and PyCharm project = Django project folder with settings.py
- Root of repo and PyCharm project is the parent directory of Django ...
0
votes
0answers
19 views
PyCharm - Mercurial integration - named branches
Does PyCharm support named branches functionality of Mercurial?
0
votes
2answers
36 views
Really Messed Up in Github/Git. Should I rebase? Or what?
Ok so I really messed up with github. I am working on a project on Computer A. I created a github repo and then pushed all my commits to it. Then I wanted to add some changes but for some reason it ...
0
votes
0answers
42 views
pycharm remote interpreter with custom python install
I have on my server a custom install of python because multiple people use this server so I renamed the binary to python27 and configured my bash accordingly. It works fine in the bash shell, but now ...
0
votes
0answers
38 views
PyCharm running GAE
I'm trying to run GAE app in PyCharm. I'd run app in terminal like this:
dev_appserver.py --datastore_path=my.db --show_mail_body yes app.yaml
I've created GAE configuration in PyCharm, set ...
0
votes
2answers
62 views
Documentation for python base classes?
This has got to be a silly question... but googling didn't actually help. Extra kudos for pycharm enabled answers. :)
I need a simple little UDP echo server (spare me the twisted advertisements ...
0
votes
1answer
92 views
name 'QApplication' is not defined [closed]
I follow the Tutorials on https://www.youtube.com/watch?v=fqK8N48kPXs&list=PLA955A8F9A95378CE
to learn pycharm
it's my first try on pycharm,I type the same codes in the video
but it failed:
...
3
votes
1answer
121 views
PyCharm remote debugging
I have remote Ubuntu server, and I'm trying set up remote debugging.
Configured as shown here.
import sys
import pydevd
sys.path.append('/root/home/scripts/pycharm-debug.egg')
...
0
votes
2answers
45 views
How to easily switch to another SVN branch in PyCharm Django Project
I have a PyCharm Django project, versioned with SVN. Project itself been created via "Checkout from version control" function, and root of a project is a root of repository, so it includes trunk and ...
1
vote
0answers
45 views
In PyCharm, webpages refresh in debug mode, not in run mode
I'm writing a GAE webapp using Python 2.7, webapp2, and Jinja. In development, I run the app under PyCharm 2.7.1 on a Max OSX 10.7.5 (Lion). I'm currently using Chrome 26.0.1410.43 as my browser.
I ...
0
votes
1answer
25 views
Extended Hippie Completion in Pycharm?
Suppose you created a class class Story, and you also created an Admin panel for this, StoryAdmin. This is referring to a common scenario in making a Django Application.
Now, in story admin, you want ...
-3
votes
1answer
170 views
python nltk issue ImportError - cannot import multiple nltk modules [closed]
My code looks like this: (Python 2.7.3)
import nltk
from nltk.tokenize import sent_tokenize, word_tokenize
from nltk.stem.wordnet import WordNetLemmatizer
from nltk.text import Text, TextCollection
...
0
votes
1answer
42 views
Better Django Admin support in PyCharm?
There seems to be no auto-complete support for Django, when it comes to changing the default admin.modelAdmin class in Django. What I mean by this is demonstrated below:
fieldsets = [
('Story', {
...
0
votes
1answer
55 views
Do I get any benefit if I use python-qt with pycharm? [closed]
Can I use python-qt with pycharm or is it already shipped or built into pycharm?
If I use python-qt with pyside when developing in pycharm, will I get any benefit?
1
vote
0answers
50 views
PyCharm: How to run behave.exe?
I want to use behave lib in my program. I write code as in behave-tutorial.
But, when I "Run" my tutorial-project, I see in PyCharm-console:
C:\Python27\virtualenv\Scripts\python.exe "C:/Program ...
0
votes
1answer
47 views
How to output gunicorn log in pycharm
I'm using Pycharm 2.7.1 and gunicorn. When I run gunicorn, I add a new Python Configuration. And I then add the command:
gunicorn_paster -c *.conf
If I want to view log, I will open the terminal ...
1
vote
0answers
20 views
Loop in Live Templates PyCharm?
How does one make a live template in PyCharm, such that it fits this description:
Say one wishes to make an automated way of making tuples. So, one types in tuple#, where # is a number. and it will ...
0
votes
1answer
58 views
How to set the Python 2 Preference in PyCharm?
PyCharm is a good IDE, but its code hinting is not so intelligent. For example, when I use it to write Python2 code (the setting of my interpreter path can tell PyCharm this), I type prin, which I ...
0
votes
0answers
59 views
manage.py dbshell not working with PyCharm 2.7.1
Whenever I try to run manage.py dbshell on PyCharm 2.7.1, it keeps on running, but never gives anything.
Could anyone please explain why this is happening? I am using sqlite3, and I added sqlite3 to ...
0
votes
1answer
94 views
My python script runs through my IDE (PyCharm) but it won't run using the Python shell
I have a short python script that uses the logging module and the configparser module.
I use PyCharm 2.7.1 and Python 3.3 under Win7.
When I run my script using PyCharm - it works. This is the output ...
1
vote
0answers
91 views
Jython Remote debugging Intellij Idea, using Pycharm plugin
Before marking this as a duplicate please read the full thread
OS - Windows XP
Primary Language - Java
Scripting Language - Jython
IDE - Intellij Idea
Python Plugin ...
0
votes
1answer
316 views
Python 3.3 - urllib.request - import error
When I try to run the following Python 3.3 code on OS X 10.8 in PyCharm 2.7 (or run the .py file with the Python 3.3/2.7.3 launcher):
import urllib.request
f = ...
1
vote
1answer
62 views
What is the keyboard shortcut for 'Commit' in the 'commit changes' dialogue in RubyMine (and PHPStorm, IntellijIDEA, PyCharm etc)?
After choosing git --> commit changes, I have a dialogue as below with 'Commit' in the bottom right. It seems to have the 'i' underlined, however I can't work out what the shortcut for it is as none ...
1
vote
0answers
19 views
How to add a custom highlighting rule in PyCharm
How does one add a custom highlighting rule in PyCharm? I mean, for example:
html = """
<html>
<body>
In %s hour(s) it will be %s.
</body>
...
1
vote
1answer
58 views
how to make pycharm always show line numbers in ubuntu
I know how to do it in the windows version but on ubuntu i dont have a 'show lines numbers' chekbox in settings/appearance
thanks
1
vote
2answers
55 views
pycharm scrolls tabs instead of document
I have installed pycharm 125.92 openjdk 1.7.0_15 on ubuntu 12.10 x64
So, the problem is when i open document and try to scroll it, pycharm opens recent documents and scroll throughout them. Any ...
2
votes
1answer
47 views
Does PyCharm support Jinja2?
A bottle of mine project uses Jinja2. PyCharm does not automatically recognize it and shows such lines as errors. Is there a way to make Jinja2 work?
0
votes
2answers
69 views
Change skeleton templates in PyCharm
is there a way I can change the main skeleton templates in PyCharm?
Whenever I start a new (for example) Flask project I have to alter the skeleton to fit my needs. It would be great if I could say ...
2
votes
1answer
82 views
Specify dev_appserver.py arguments in PyCharm
I need to override the Automatic ID Allocation Policy for my Google AppEngine app by running the following:
dev_appserver.py --auto_id_policy=sequential
How do I specify App Engine arguments from ...
1
vote
1answer
91 views
Celery tasks don't run in PyCharm debugger
I'm using PyCharm and have noticed when I attach a debugger to a celery worker process that my tasks do not complete and this error is logged to the console:
Traceback (most recent call last):
File ...
1
vote
1answer
100 views
Intellij IDEA 12: How to get PEP8 on the fly
It seems this is already supported in PyCharm 2.7
How can I get that for my IntelliJ IDEA 12? Currently for each file I do this
UPDATE
As mentioned by @CrazyCoder, after updating to IDEA 12.1, I ...
0
votes
1answer
60 views
PyCharm and SCSS - Is there a way to compile SCSS into CSS from within the IDE?
Is there a way to compile SCSS into CSS from within the IDE? How?
0
votes
1answer
88 views
Debug Flask app in Pycharm with odd structure
I'm new to debugging flask with pycharm, so hopefully nothing I ask is too trivial.
I have two files, code/__init__.py and code/runserver.py.
The __init__.py file is where my Flask app is ...
2
votes
1answer
115 views
error when using pygame.image.load()
When I try to load an image in another folder I get...
pygame.error: Couldn't open sprites/testtile.png
I can load .png files just fine if they are in the same directory, but once they're in another ...
0
votes
0answers
61 views
How to use git on Mac OS X with PyCharm? [closed]
Hello all! I have a problem: I want to set up git on my new MacBook Pro, using PyCharm. Please, help me! How to get it to work? On Ubuntu Linux this operation was automated, so I didn't have problems ...
-2
votes
1answer
63 views
running quickly application using pycharm
I was wondering how I could run a quickly application using pycharm. The way which I would hope to do it is instead of saying:
$ quickly run
In the terminal, I would Hope that I could instead just ...
0
votes
1answer
148 views
pycharm doesn't recognize pygame package
I'm using mac OsX 10.8.2, pyCharm 2.7.1. python 2.7.2
I want to use pygame package with pycharm. I followed the instructions on the pygame site and installed pygame 1.9.1 successfully.
When I write ...
0
votes
1answer
157 views
IntelliJ IDEA 12: How can I run pip install to install libraries in virtual environment?
I am using IntelliJ IDEA 12 Ultimate Edition and creating flask project.
I created the virtualenv using IDEA and using that, but my code has dependency on other libraires I as move forward. For ...
1
vote
0answers
22 views
PyCharm phantom files in changelist
I love PyCharm (and IntelliJ). However, in PyCharm for Max OSX, using Mercurial VCS, I get what I call "phantom files" in my changelists as I work. I don't know why they appear and I don't know how to ...





