@ 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.
Ich habe es versucht.
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
Referenz: sys.path
Eine Liste von Zeichenfolgen, die den Pfad für die Suche nach dem Modul angeben. Es wird mit der Umgebungsvariablen PYTHONPATH und dem während der Installation angegebenen Standardpfad initialisiert.
Recommended Posts