在进行“setup.pydevelop”时如何让setuptools使用easy-install.pth中的相对路径
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的源代码位于安装目录的子目录中,则会自动将其设置为相对目录。
无论如何,为什么你需要它是相对的?
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?