There is a tutorial in the IDEA docs on how to add a Python interpreter in PyCharm, which involves accessing the "Project Interpreter" page. Even after installing the Python plugin, I don't see that setting anywhere.
Am I missing something obvious?
There is a tutorial in the IDEA docs on how to add a Python interpreter in PyCharm, which involves accessing the "Project Interpreter" page. Even after installing the Python plugin, I don't see that setting anywhere.
Am I missing something obvious?
With the Python plugin installed:
Provided you have a Python SDK installed, the flow should be natural from there - navigate to the location your Python installation lives.
I was getting the error (IntelliJ on Ubuntu 18.04) while python SDK was configured.
To fix that, I had to do this:
File
-> Project Structure
-> Modules
Click on the Dependencies
tab, and click on +
and select the python SDK
Click on Apply
After that, the warning went away and autocompletion also started working properly
So here is a simple project, where I have used Selenium
and added that using external path
Now you need to open Project Structure
and go to SDK
Section
Now Select your project's virtual environment. In the Classpath
tab add the PYTHONPATH
by clicking +
button
and now the modules will be recognized
Follow these steps:
If you have multiple modules in your project, with different languages, you can set the interpreter in the following way:
File -> Project Structure...
Modules
in the list on the leftNew...
button to create either a virtualenv, or create a new Python SDK from a Python installation on your system.