pip 的 -e 选项发生了什么?
pip 文档提到了 -e
选项pip,这也用在一些 BuildBot 开发人员“入门”注释中。但是,我有 pip 1.0.1 并且正在运行:
pip -e master
reports
Usage: pip COMMAND [OPTIONS]
pip: error: no such option: -e
pip 版本 1.0.1 似乎是最新的,因为运行 pip 来升级自身不会下载较新的版本。 -e
选项发生了什么?
The pip documentation mentions -e
option to pip, and this is also used on some BuildBot developer 'getting started' notes. However, I have pip 1.0.1 and that running:
pip -e master
reports
Usage: pip COMMAND [OPTIONS]
pip: error: no such option: -e
Version 1.0.1 of pip seems to be the latest, in that running pip to upgrade itself does not download a newer version. What happened to the -e
option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它还在那里!但是,-e 仅是
pip install
的选项,而不是pip
本身的选项。It's still there! But, -e is an option only to
pip install
, not topip
itself.