gotr00t0day / spyhunt

recon for bug hunters
429 stars 95 forks source link

Errors #5

Closed PlugCodes closed 4 months ago

PlugCodes commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

4ndymcfly commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

I think that codecs is a built-in module, you don't need to install it using pip.

PlugCodes commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

I think that since codecs is a built-in module, you don't need to install it using pip.

How would I download it then

gotr00t0day commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

pip3 install codecs?

4ndymcfly commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

I think that since codecs is a built-in module, you don't need to install it using pip.

How would I download it then

Try this: Open a terminal, type these commands, python3 and then import codecs, if you press enter and do not receive any errors, you do not need to import codecs.

Ahmedxemam commented 4 months ago

ERROR: Could not find a version that satisfies the requirement codecs (from versions: none) ERROR: No matching distribution found for codecs

t is in the standard repository, that is it's always available, no need to install it. remove it from requirements.txt

Ahmedxemam commented 4 months ago

i have this error ERROR: Directory '.' is not installable. Neither 'setup.py' nor 'pyproject.toml' found.

gotr00t0day commented 4 months ago

i have this error ERROR: Directory '.' is not installable. Neither 'setup.py' nor 'pyproject.toml' found.

Because you're not running the command correctly. Use this pip3 install -r requirements.txt and then python3 install.py

Ahmedxemam commented 4 months ago

I did and still have same error