Answers for "best way to add a python directory to the path"

0

add dir to path python

import sys
sys.path.insert(0,'/path/to/mod_directory')
Posted by: Guest on August-26-2021
3

adding to python path

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

Code answers related to "best way to add a python directory to the path"

Python Answers by Framework

Browse Popular Code Answers by Language