Answers for "how to set the path of python"

2

edit path variable using python

app_path = os.path.join(root_path, 'other', 'dir', 'to', 'app')
os.environ["PATH"] += os.pathsep + app_path
Posted by: Guest on September-12-2020

Code answers related to "how to set the path of python"

Python Answers by Framework

Browse Popular Code Answers by Language