-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python not found #88
Comments
ping @ndabas (as it looks like you might be using the Pico Windows Installer) |
Thats correct yes. |
Okay that's a bit strange, but can you check a few things?
|
I think so... I downloaded the Windows Installer from https://www.python.org/downloads/windows/
That was in the Pico Dev Shell |
Thanks, looks like the Python version you installed isn't in the PATH -- but py.exe should have found it anyway (it doesn't use the PATH for that.) Do you see Python 3.11 listed in the output of If not -- the solution for you might be to re-install the Python version that you downloaded, but make sure to check the option to add it to PATH. |
yes as it seems |
Right, so the solution would be to re-install Python but make sure you add it to PATH this time, or just disable the app execution aliases for Python. The underlying problem is that App Execution Aliases in Windows are messing around when
|
so, the point is to re-install it?? because it is already in the PATH vriable
|
I tried starting it this way:
The content of CMakeOutput.log:
|
If it's already in the PATH, just try disabling the App Execution Alias as mentioned above. It looks like the project was created fine but CMake used the wrong generator. You can try this from your project directory: mkdir build # don't worry if this already exists
cd build
cmake -G Ninja .. --fresh
ninja |
well, it does build something, but when I copy it to the device, the display just stays black. And I can't neither build the examples... I guess I throw it in the corner or so.. |
I get this when I try to start it:
even though I get a python shell when I execute
py
orpython
without parameters. I have no idea what I did wrong...The text was updated successfully, but these errors were encountered: