@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic (No. 3078 / 12833)
Where does Python look for files to import? It uses a list of directory names and ZIP archive files stored in the standard sys module as the variable path.
J'ai essayé.
http://ideone.com/ymwEWM
import sys
for place in sys.path:
print(place)
run
/home/aE6sH9
/usr/lib/python35.zip
/usr/lib/python3.5
/usr/lib/python3.5/plat-x86_64-linux-gnu
/usr/lib/python3.5/lib-dynload
/usr/local/lib/python3.5/dist-packages
/usr/lib/python3/dist-packages
Référence: sys.path
Une liste de chaînes indiquant le chemin de recherche du module. Il est initialisé avec la variable d'environnement PYTHONPATH et le chemin par défaut spécifié lors de l'installation.
Recommended Posts