📜  python如何导入库绝对路径 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:41.894000             🧑  作者: Mango

代码示例1
import sys
sys.path.append('/foo/bar/my_module')
# Considering your module contains a function called my_func, you could import it:
from my_module import my_func
# Or you could import the module as a whole,
import my_module