Top "Pycharm" questions

PyCharm is an integrated development environment (IDE) for Python.

How bad is shadowing names defined in outer scopes?

I just switched to Pycharm and I am very happy about all the warnings and hints it provides me to …

python coding-style pycharm
Is there a difference between using a dict literal and a dict constructor?

Using PyCharm, I noticed it offers to convert a dict literal: d = { 'one': '1', 'two': '2', } into a …

python dictionary pycharm
PyCharm import external library

I am using PyCharm as an editor for python code in Houdini. Whenever I try to import the main Houdini …

python import pycharm
How do I activate a virtualenv inside PyCharm's terminal?

I've set up PyCharm, created my virtualenv (either through the virtual env command, or directly in PyCharm) and activated that …

python django shell virtualenv pycharm
Using (Ana)conda within PyCharm

I've got Pycharm 4 running on my Linux (Ubuntu 14.04) machine. In addition to the system python, I've also got Anaconda installed. …

python virtualenv pycharm anaconda conda
How to configure custom PYTHONPATH with VM and PyCharm?

I am using IntelliJ with the Python plugin and the Remote Interpreter feature to communicate with my Vagrant VM. It …

intellij-idea pycharm pythonpath
"UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure." when plotting figure with pyplot on Pycharm

I am trying to plot a simple graph using pyplot, e.g.: import matplotlib.pyplot as plt plt.plot([1,2,3],[5,7,4]) plt.…

python matplotlib pycharm
ImportError: No module named 'bottle' - PyCharm

I installed bottle on python3.4 with pip install. In terminal, when I do: $ python3.4 >>>import bottle # shows …

python pycharm bottle importerror
Global npm install location on windows?

I'm not 100% sure, but I believe I installed node v5 from the windows installer on both my home and office …

node.js windows npm pycharm
Pycharm and sys.argv arguments

I am trying to debug a script which takes command line arguments as an input. Arguments are text files in …

python linux pycharm