Python 套件載入的路徑有哪些? 要如何查看?
列出、設定 Python 套件 Include Path
Python 套件載入的路徑可以用下述方式查看:
import sys print sys.path # 這邊就會印出來有哪些 path
另外也可以於 Shell 另外設定 PYTHONPATH 的參數, ex:
- export PYTHONPATH=/實體完整路徑/path/your/module
範例
- mkdir /tmp/pythonlib
- export PYTHONPATH=/tmp/pythonlib
- vim /tmp/pythonlib/d.py
#!/usr/bin/python # -*- coding: utf-8 -*- print "hello"
- chmod +x /tmp/pythonlib/d.py
- vim /tmp/a.py
import d
- cd /tmp
- python a.py # 會印出 "hello"