Hints for Python & NodeJS install Variables on Windows #7
River-Mochi
started this conversation in
Ideas
Replies: 3 comments
-
Also see Powershell Tips here: #106 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you don't want python to install to a hidden folder
from: https://stackoverflow.com/questions/5087831/how-should-i-set-default-python-version-in-windows |
Beta Was this translation helpful? Give feedback.
0 replies
-
Install Node.js
Terminal window that opens, need to press any key like spacebar to continue. then press a key a second time.Then it will open Powershell in admin mode. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Reference images for windows 11 install of Python 3.11
====
1. Check box at the bottom, "Add python.exe to PATH", then choose "Customize installation"
2. Page 2, accept defaults works, looks similar to this.
3. Page 3, "Add Python to environment variables"
Note: If you "Install Python for all users," you do not need to "add python to environment variables," doing both is fine also on a home PC, which is what I did here.
### Python PATH
Check your windows PATH environment variable and be sure to include the Scripts directory of your Python installation. Recent versions of Python include a script to do this for you. Navigate to your Python installation directory (for example C:\Python311), open the Tools, then Scripts folder, and run the win_add2path.py file by double clicking on it. Alternatively, you can download the script here and run it with the command:
python win_add2path.py
Beta Was this translation helpful? Give feedback.
All reactions