让 Python 使用 ActiveTcl 库

发布于 2024-07-05 21:39:33 字数 74 浏览 8 评论 0原文

有没有办法让 Python 使用我的 ActiveTcl 安装,而不必将 ActiveTcl 库复制到 Python/tcl 目录中?

Is there any way to get Python to use my ActiveTcl installation instead of having to copy the ActiveTcl libraries into the Python/tcl directory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-07-12 21:39:33

不熟悉 ActiveTcl,但一般来说,当标准库中已存在该名称时,如何加载要加载的包/模块:

import sys
dir_name="/usr/lib/mydir"
sys.path.insert(0,dir_name)

将 dir_name 的值替换为包含包/模块的目录的路径,然后运行在导入任何内容之前的上面的代码。 这通常是通过“sitecustomize.py”文件完成的,这样它就会在解释器启动后立即生效,因此您无需担心导入顺序。

Not familiar with ActiveTcl, but in general here is how to get a package/module to be loaded when that name already exists in the standard library:

import sys
dir_name="/usr/lib/mydir"
sys.path.insert(0,dir_name)

Substitute the value for dir_name with the path to the directory containing your package/module, and run the above code before anything is imported. This is often done through a 'sitecustomize.py' file so that it will take effect as soon as the interpreter starts up so you won't need to worry about import ordering.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文