如何在 Visual Studio IronPython 项目中配置导入路径

发布于 2024-07-07 20:26:05 字数 510 浏览 6 评论 0 原文

我已经构建了 Visual Studio 2005 SDK 附带的 IronPythonIntegration 解决方案(如 http://www.izume.com/2007/10/13/integrating-ironpython-with-visual-studio-2005),我现在可以在 Visual 中使用 IronPython 项目Studio 2005。但是,要从标准库导入 Python 文件,我需要首先包含这两行:

import sys
sys.path.append('c:\Python24\lib') 

对于我希望能够从中导入的任何其他文件夹也类似。

有谁知道如何设置导入路径以便所有 IronPython 项目自动选择它们?

I have built the IronPythonIntegration solution that comes with the Visual Studio 2005 SDK (as explained at http://www.izume.com/2007/10/13/integrating-ironpython-with-visual-studio-2005), and I can now use IronPython projects inside Visual Studio 2005. However, to let a Python file import from the standard library I need to include these two lines first:

import sys
sys.path.append('c:\Python24\lib') 

and similarly for any other folders I want to be able to import from.

Does anyone know a way to set up import paths so that all IronPython projects automatically pick them up?

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

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

发布评论

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

评论(1

晌融 2024-07-14 20:26:05

将操作系统中的环境变量 IRONPYTHONPATH 设置为“c:\Python24\lib”。 (或者您需要的任何其他地方)。

Set the environment variable IRONPYTHONPATH in your operating system to 'c:\Python24\lib'. (Or anywhere else you need).

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