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 使用我的 ActiveTcl 安装,而不必将 ActiveTcl 库复制到 Python/tcl 目录中?
不熟悉 ActiveTcl,但一般来说,当标准库中已经存在该名称时,如何获取要加载的包/模块:
import sys dir_name="/usr/lib/mydir" sys.path.insert(0,dir_name)
将 dir_name 的值替换为包含您的包/模块的目录的路径,并在导入任何内容之前运行上述代码。这通常是通过“sitecustomize.py”文件完成的,因此它会在解释器启动后立即生效,因此您无需担心导入顺序。