在 setup.cfg 中设置 basedirlist 并在 make 中设置 PREFIX 以指向 virtualenv

发布于 2024-09-19 09:43:51 字数 521 浏览 3 评论 0原文

SO问题3692928中,我展示了如何我在 virtualenv 中编译并安装了 matplotlib。但我做的一件事并不理想——我手动设置了 setup.cfg 中的 basedirlist 和 make.osx 中的 PREFIX

setup.cfg

[directories]
basedirlist = /Users/matthew/.virtualenvs/matplotlib-test

make.osx

PREFIX=/Users/matthew/.virtualenvs/matplotlib-test

有没有办法可以自动将它们设置为当前激活的 virtualenv ?

In SO question 3692928, I showed how I compiled and installed matplotlib in a virtualenv. One thing I did was suboptimal though—I manually set the basedirlist in setup.cfg and PREFIX in make.osx.

setup.cfg

[directories]
basedirlist = /Users/matthew/.virtualenvs/matplotlib-test

make.osx

PREFIX=/Users/matthew/.virtualenvs/matplotlib-test

Is there a way that I can automatically set these to the currently activated virtualenv?

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

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

发布评论

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

评论(1

╭⌒浅淡时光〆 2024-09-26 09:43:56

使用 VIRTUAL_ENV 环境变量:

setup.cfg

[directories]
basedirlist = ${VIRTUAL_ENV}

ma​​ke.osx

PREFIX=${VIRTUAL_ENV}

Use the VIRTUAL_ENV environment variable:

setup.cfg

[directories]
basedirlist = ${VIRTUAL_ENV}

make.osx

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