從任意檔案系統位置匯入模組

如果要在 Python 標準庫中匯入尚未作為內建模組存在的模組,也不想作為側包匯入,可以通過將模組所在目錄的路徑新增到 sys.path實現 。當主機上存在多個 python 環境時,這可能很有用。

import sys
sys.path.append("/path/to/directory/containing/your/module")
import mymodule

將路徑附加到找到 mymodule目錄非常重要,而不是模組本身的路徑。