Reputation: 1
I recently booted up my Pyzo IDE with the intention of doing some programming, however, upon starting up the python shell it gave this following error:
The given path was not found
The process failed to start (invalid command?). (1)
I am not able to run any code with this error. If I try to run it nothing happens and the error re-appears.
I have tried reinstalling the whole thing without success, I have tried reading the log but there was no error message and I have also tried looking for posts regarding the same problem without success. I was hoping if someone could explain what my problem is and a possible solution, thanks.
Upvotes: 0
Views: 8234
Reputation: 1937
For me the solution was much simpler than the solution proposed.
I had misspelled the path to python.exe
The path for me (windows 7) was c:\users\user\appdata\local\programs\python\python38\python.exe
. For other users might be different
Upvotes: 0
Reputation: 1
This is how I fixed it:
miniconda3
file in C:\Users\<user>\Miniconda3
(might be in other file/the thing is you need to find the miniconda3
file)C:\Users\<user>\Miniconda3\python.exe
)Upvotes: 0