Answers for "how to add python to the path windows 10"

4

adding to python path

export PYTHONPATH="${PYTHONPATH}:/my/other/path"
Posted by: Guest on June-23-2021
3

add python to path

# On linux
$ which python; # Get Path of the executable
$ export PATH=$PATH:{PATH_PYTHON}; # but it isn't continue
# ----------------------
$ which python; # Get Path of the executable
export PATH=$PATH:{PATH_PYTHON}; # add in your ~/.bashrc or your ~/.zshrc
Posted by: Guest on October-06-2020
0

windows 10 python path

setx PATH "%PATH%;C:Python34Scripts"
Posted by: Guest on October-22-2021

Code answers related to "how to add python to the path windows 10"

Python Answers by Framework

Browse Popular Code Answers by Language