Python 是否有一个像样的替代品来代替;pip捆绑包;?

Python 是否有一个像样的替代品来代替;pip捆绑包;?,python,pip,Python,Pip,我在生产系统中使用了pip bundle,今天我收到了以下令人沮丧的消息: ############################################### ## ## ## Due to lack of interest and maintenance, ## ## 'pip bundle' and support for installing ## ## from *.pybundle

我在生产系统中使用了
pip bundle
,今天我收到了以下令人沮丧的消息:

###############################################
##                                           ##
##  Due to lack of interest and maintenance, ##
##  'pip bundle' and support for installing  ##
##  from *.pybundle files is now deprecated, ##
##  and will be removed in pip v1.5.         ##
##                                           ##
###############################################
我的服务器会自动扩展并自动构建,但我以前一直依赖可用的PyPi。相反,我使用
pip bundle
并将.pybundle文件提交给源git repo。这意味着我只需要依靠一个源来构建我的服务器

随着
pip bundle
的消失(谁知道什么时候),我需要一种替代方法来使用-是否有任何建议或类似的方法来打包生产分发的依赖项

谢谢

使用新的
wheel
基于
pip
将包打包成ZIP格式

或者,您可以安装一个egg代理;我们与本地egg代理一起使用,以管理开发和生产环境中的包依赖关系和版本控制。

使用时,它的作用与此基本相同:

而不是

pip bundle -q mybundle.pybundle -r python-requirements.pip
你写道:

pip-bundle create mybundle.pybundle -r python-requirements.pip
pip-bundle install mybundle.pybundle

pip-wheel
似乎能让我在90%的过程中达到目的,除了任何基于git的“格式为
-e git的依赖项+git@your.gitserver.com:/repo.git#egg=repo
-如果我将git repo指针更改为
git,我将签出buildout+https://...
事情进展顺利。谢谢你的帮助!我们就是这样结束的:上面评论中的链接应该是