I would imagine that this has been answered before, but I could not find a thread for that describes the search process exactly. Apologies if I am wrong. I
What is exactly the search process Python follows for finding a module? What paths are considered in what order? (e.g. sys.path
vs PYTHONPATH
definitions, site-packages
etc.)
I copied below the information from the link provided in the comments, the following, but I have the following questions:
- What is the
installation-dependent
default exactly? - What happens if you have a virtual environment from
virtualenv
or fromconda
activated?
When a module named spam is imported, the interpreter first searches for a built-in module with that name. If not found, it then searches for a file named spam.py in a list of directories given by the variable sys.path. sys.path is initialized from these locations:
- The directory containing the input script (or the current directory).
PYTHONPATH
(a list of directory names, with the same syntax as the shell variablePATH
).- The installation-dependent default.
After initialization, Python programs can modify
sys.path
. The directory containing the script being run is placed at the beginning of the search path, ahead of the standard library path. This means that scripts in that directory will be loaded instead of modules of the same name in the library directory. This is an error unless the replacement is intended. See section Standard Modules for more information.