aboul3la / Sublist3r

Fast subdomains enumeration tool for penetration testers
GNU General Public License v2.0
9.84k stars 2.11k forks source link

Error on collecting requirements.txt when running on macbook #34

Closed thefishermanhacker closed 8 years ago

thefishermanhacker commented 8 years ago

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

jamlamberti commented 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!

thefishermanhacker commented 8 years ago

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 .

jamlamberti commented 8 years ago

@aboul3la This issue can be closed!

aboul3la commented 8 years ago

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.