在 setup.cfg 中设置 basedirlist 并在 make 中设置 PREFIX 以指向 virtualenv
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
VIRTUAL_ENV
环境变量:setup.cfg
make.osx
Use the
VIRTUAL_ENV
environment variable:setup.cfg
make.osx