You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working to use pip in place of easy_install, but due to #3, I have to install packages as eggs. So I tried installing a package as an egg, but because a wheel was available, pip installed that, and not as an egg. I would expect (in order of preference):
Pip would convert the wheel to an egg and install it.
Pip would disregard wheels and build and egg from a source distribution and install it.
Pip would raise an error that it can't install as an egg when a wheel is available.
@jaraco since the actual issue causing #3 is, that editable installs and "normal" non egg installs are incompatible, i see this more of a bug of the setuptools develop command than pip
Description:
I'm working to use pip in place of easy_install, but due to #3, I have to install packages as eggs. So I tried installing a package as an egg, but because a wheel was available, pip installed that, and not as an egg. I would expect (in order of preference):
What I've run:
The text was updated successfully, but these errors were encountered: