Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happened to the -e option for pip?

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?

like image 990
Dickon Reed Avatar asked Jun 01 '11 18:06

Dickon Reed


People also ask

What happened to PiP in YouTube?

Picture-in-picture was available as an experimental feature for YouTube Premium subscribers. The feature is no longer available for new testers or any non-Premium users.

Why is Picture in Picture unavailable for music?

Google doesn't want you to use it for music because most people don't watch music, which means you aren't going to watch the ads. youtube pip on android works for any video on the app unless the video is classified as a music video.

Why did my PiP stop working?

Solution: It's mainly because your app launcher is not compatible with the YouTube app; hence, you can try restoring the default app launcher to see if PIP mode starts working again.


1 Answers

It's still there! But, -e is an option only to pip install, not to pip itself.

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

/usr/local/bin/pip install: error: -e option requires an argument
like image 181
peritus Avatar answered Sep 28 '22 06:09

peritus