在进行“setup.pydevelop”时如何让setuptools使用easy-install.pth中的相对路径

发布于 2024-09-26 22:10:25 字数 282 浏览 4 评论 0原文

我正在使用 setuptools 和“python setup.pydevelop”命令安装 python Egg。所有安装路径都是相对的,这一点很重要。我发现我可以这样做:

python setup.py develop --egg-path ../../../../my_directory

并且 .egg-link 文件使用该相对路径。但是,添加到 easy-install.pth 中的路径仍然是绝对路径。如何使 easy-install.pth 文件中的路径成为相对路径?

I'm installing a python egg using setuptools with the "python setup.py develop" command. It's important that all install paths be relative. I see that I can do:

python setup.py develop --egg-path ../../../../my_directory

and the .egg-link file uses that relative path. However, the path added to easy-install.pth still is an absolute path. How do I make the path in the easy-install.pth file a relative path?

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

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

发布评论

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

评论(1

半岛未凉 2024-10-03 22:10:25

如果您的源代码位于安装目录的子目录中,则会自动将其设置为相对目录。

无论如何,为什么你需要它是相对的?

If your sourcecode is in a subdirectory of the installation directory, it will be made relative automatically.

Why do you need it to be relative, anyway?

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