PyCharm startup, No Python Interpreter
I've downloaded and installed IDLE Python which works fine.
PyCharm download and install appeared to be successful.
PyCharm starts up, but when I select 'Create project' I get the error message 'No Python Interpreter'.
When I try to 'add' a Python Interpreter, none are displayed to be selected.
OS is ubuntu 12.04 LTS
PyCharm download and install appeared to be successful.
PyCharm starts up, but when I select 'Create project' I get the error message 'No Python Interpreter'.
When I try to 'add' a Python Interpreter, none are displayed to be selected.
OS is ubuntu 12.04 LTS
Please sign in to leave a comment.
1.Settings -> Python interpreter -> configure interpreters
2.Then click plus
3.Select Local
4.Select path to pythonlocation/python.exe
You can also install packages there. Also I would recommend using virtual environments, thus in step 2 instead of clicking plus click "create virtual environment" button(2 below plus)
Thanks so much Farkeman. Onward and upward.
Wow, this is wholesome! :)
Your Java would be pointing a lower version it seems, find in the system variables. update recent java version, point the newer java version in settings/environment variables/system variables. this worked for me.
If there are no choices at all:
- Close pycharm
- Delete the .idea/ folder of that project
- Restart PyCharm and open project
Worked for me
Solution from Chris worked for me. I pull the project from the Git which had .idea folder mess up the project. When I delete the .idea folder everything comes to normal.