Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在某个路径导入 Python 库?例如,
import os, sys, etc import "/path/to/lib.py"
我想包含一个带有 python 文件的库,除了让他们安装库之外,这是我能想到的最好的方法。
你可以这样做:
sys.path.append('/path/to') import lib
但是,说实话,你不应该。 安装库非常容易,尤其是使用virtualenv和pip等工具。