What happened to the -e option for pip?

The documentation for the protocol mentions the option -efor pip, and it is also used by some BuildBot developers to "get started . " However, I have pip 1.0.1 and it works:

pip -e master

Reports

Usage: pip COMMAND [OPTIONS]

pip: error: no such option: -e

Version 1.0.1 of pip is apparently the latest, since pip does not load a newer version for this update itself. What happened to the option -e?

+5
source share
1 answer

He is still there! But -e is an option only pip install, not pip.

$ pip install -e
Usage: /usr/local/bin/pip install [OPTIONS] PACKAGE_NAMES...

/usr/local/bin/pip install: error: -e option requires an argument
+9
source

All Articles