Closed thefishermanhacker closed 8 years ago
That is because pip is interpreting requirements.txt as a requirement specifier. The correct command to run is actually:
$ pip install -r requirements.txt
This tells pip to interpret each line in the requirements.txt file as a requirement specifier.
Let me know if this fixes it for you!
Yea thats do the work. Thanks
On Oct 7, 2016 08:28, "Jack Lamberti" notifications@github.com wrote:
That is because pip is interpreting requirements.txt as a requirement specifier. The correct command to run is actually:
$ pip install -r requirements.txt
This tells pip to interpret each line in the requirements.txt file as a requirement specifier.
Let me know if this fixes it for you!
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/aboul3la/Sublist3r/issues/34#issuecomment-252156271, or mute the thread https://github.com/notifications/unsubscribe-auth/AC9m-ioE-VuphVxCCGirMm8XYux9ai4Uks5qxdh1gaJpZM4KDkeW .
@aboul3la This issue can be closed!
As @jamlamberti mentioned. The correct command should be pip install -r requirements.txt
. I will add that also to README to make everyone aware of that.
Hi! I got the following errors while running: pip install requirements.txt.
bash-3.2$ pip install requirements.txt Collecting requirements.txt Could not find a version that satisfies the requirement requirements.txt (from versions: ) No matching distribution found for requirements.txt
Thanks