Answers for "to set a specific pythonpath in a directory in python"

1

add directory to pythonpath(in ~/.bashrc

export PYTHONPATH="${PYTHONPATH}:/my/other/path"
Posted by: Guest on June-26-2020
5

how to use path to change working directory in python

pip install path
from path import Path

# set working directory
Path("/toWhereYouWantItToBe").cd()
Posted by: Guest on March-09-2020

Code answers related to "to set a specific pythonpath in a directory in python"

Python Answers by Framework

Browse Popular Code Answers by Language