是否有使用 pip 但不安装 virtualenv 的构建配方?

发布于 2024-08-13 11:38:25 字数 197 浏览 5 评论 0原文

我想使用 buildout 而不是 virtualenv。这个决定意味着我不希望 virtualenv 被偷偷放入我的工具包中,因此我正在寻找一种方法来告诉 gp.recipe.pip 安装 virtualenv meme 病毒,或者,从 git repos 安装软件包以与 django/djangorecipe 一起使用的方法。

有想法吗?

I would like to use buildout rather than virtualenv. This decision means that I don't want virtualenv to be snuck into my kit, so I am looking for either a way to tell gp.recipe.pip not to install the virtualenv meme virus, or, a way to install packages from git repos for use with django/djangorecipe.

Ideas?

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

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

发布评论

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

评论(1

反目相谮 2024-08-20 11:38:25

当然,
您想在构建中使用 mr.developer

具体来说,(取自 mr.developer 页面),类似于:

[buildout]
extensions = mr.developer
auto-checkout = my.package

[sources]
my.package = svn http://example.com/svn/my.package/trunk update=true
some.other.package = git git://example.com/git/some.other.package.git

这将从 git 中获取您想要的软件包,并将其作为开发的 Egg 安装到您的构建中。

Sure,
You want to use mr.developer in your buildout.

Specifically, (taken from the mr.developer page), something like:

[buildout]
extensions = mr.developer
auto-checkout = my.package

[sources]
my.package = svn http://example.com/svn/my.package/trunk update=true
some.other.package = git git://example.com/git/some.other.package.git

That will get you the packages that you were after from git, installed as developed eggs into your buildout.

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