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
When a package is specified by a url in a requirements file, pip freeze -r will lose that url. i.e:
$ cat req.txt
https://www.djangoproject.com/download/1.6.2/tarball/#egg=Django
$ pip freeze -r req.txt
Django==1.6.2
## The following requirements were added by pip --freeze:
wsgiref==0.1.2
i.e pip freeze -r req.txt > req.txt would lose information on the round trip. If the package was not in the package index, it would no longer be installable from the new file in a new environment.
The text was updated successfully, but these errors were encountered:
When a package is specified by a url in a requirements file,
pip freeze -r
will lose that url. i.e:i.e
pip freeze -r req.txt > req.txt
would lose information on the round trip. If the package was not in the package index, it would no longer be installable from the new file in a new environment.The text was updated successfully, but these errors were encountered: