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

4

adding to python path

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

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

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

Python Answers by Framework

Browse Popular Code Answers by Language