Top "Pycharm" questions

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

Is there a Variable Explorer for PyCharm

I recently changed from Spyder to PyCharm as a Python IDE. In Spyder I have often used the variable explorer …

pycharm
PyCharm. /usr/bin/python^M: bad interpreter

Cannot figure out, where to change EOF in PyCharm. My scripts, started with: #!/usr/bin/python # -*- coding: utf-8 …

python interpreter eof pycharm
How to import python file located in same subdirectory in a pycharm project

I have an input error in pycharm when debugging and running. My project structure is rooted properly, etc./HW3/. so …

python pycharm importerror
Add pygame module in PyCharm IDE

I've downloaded pygame-1.9.1release.tar.gz from the Pygame website. I extracted and installed it and it's working fine in …

python python-2.7 terminal pygame pycharm
ModuleNotFoundError: No module named 'tools.nnwrap'

I am trying to import a package "torch". For same, I tried to install it using pip command as below, …

python pycharm pytorch
Simplify Chained Comparison

I have an integer value x, and I need to check if it is between a start and end values, …

python pycharm
How to link PyCharm with PySpark?

I'm new with apache spark and apparently I installed apache-spark with homebrew in my macbook: Last login: Fri Jan 8 12:52:04 on …

python apache-spark pyspark pycharm homebrew
Why does Pycharm's inspector complain about "d = {}"?

When initializing a dictionary with d = {} Pycharm's code inspector generates a warning, saying This dictionary creation could be rewritten as …

python pycharm
How to remove project in PyCharm?

If I'm closing a project and then just delete the project folder, after PyCharm restarts an empty project folder is …

python pycharm
How do I type hint a method with the type of the enclosing class?

I have the following code in python 3: class Position: def __init__(self, x: int, y: int): self.x = x self.…

python python-3.x pycharm typing python-3.5