+ 13
What is the purpose of PYTHONPATH in python?
3 Réponses
+ 4
https://www.geeksforgeeks.org/pythonpath-environment-variable-in-JUMP_LINK__&&__python__&&__JUMP_LINK/
I think 🤔 this will work for you.
+ 2
PYTHONPATH is an environment variable which you can set to add additional directories where python will look for modules and packages. For most installations, you should not set these variables since they are not needed for Python to run. Python knows where to find its standard library.
+ 1
Your PYTHONPATH lists the filesystem locations that Python will search for any non-built-in modules that you `import`