setting python environment variable code example

Example 1: python create environment variable

import os
os.environ['variable_name'] = 'variable_value'

Example 2: python path to python executable

>>> import sys
>>> print(sys.executable)
C:\path\to\python.exe

Example 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