Reputation: 31
So I was on pycharm and I made a new file to put some code in, but when I ran the code it said "No Python at 'file_name'" Underneath in the terminal it also said "Process Code finished with exit code 103". Anyone know what that means?
Upvotes: 3
Views: 23836
Reputation: 323
It means your Pycharm is trying to access python interpreter but unable to locate it or installation of virtual python interpreter was not completed or installed properly.
Follow these steps
Upvotes: 1
Reputation: 11
Go to the directory where you installed python, usually C:\\pythonX
and copy everything to C:\Users\ACCOUNT-NAME\AppData\Local\Programs\Python\PythonX
Upvotes: 1