Skip to content Skip to sidebar Skip to footer

"executable Not Specified" Error In PyCharm

When I try to run a python script in PyCharm, I get this error message: error running myscript: Executable is not specified and the script does not run. How do I run my script th

Solution 1:

You need to designate an interpreter for the project.

File -> Settings -> Project -> Project Interpreter, and then select an interpreter at the right.

It looks like this on PyCharm Community Edition 4.0.3:

File -> Settings

Project -> Project Interpreter -> Select Interpreter

The official JetBrains guide to setting up an interpreter can be found here.


Post a Comment for ""executable Not Specified" Error In PyCharm"