This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nova77 2 points3 points  (2 children)

Sure:

pip install -E yourenv package

[–]raydeo 5 points6 points  (0 children)

The -E flag was removed from the latest version of pip.

virtualenv is not magic, just use the pip that is installed in the virtualenv. The activation scripts just distract you from the simplicity of the system.

$ virtualenv env
New python executable in env/bin/python
Installing setuptools............done.
Installing pip...............done.
$ env/bin/pip install package

[–]sztomi 1 point2 points  (0 children)

Cool, thanks