social-engineer-toolkit icon indicating copy to clipboard operation
social-engineer-toolkit copied to clipboard

ERROR: Could not build wheels for pycrypto, which is required to install pyproject.toml-based projects

Open Ash77778 opened this issue 1 year ago • 12 comments
trafficstars

Ash77778 avatar Jan 18 '24 17:01 Ash77778

im having the same issue. can someone let me know when its resolved

Wattlee1 avatar Jan 23 '24 02:01 Wattlee1

change pycrypto to pycryptodome in requirements

r03n3h avatar Jan 30 '24 11:01 r03n3h

I'm also having the same issue but with termux cli recommend a breakdown of fix for reinstall on all platforms available?

Vj9977 avatar Feb 15 '24 05:02 Vj9977

m having the same issue. can someone let me know when it is resolved

NATHANIELCROSBY1 avatar Feb 27 '24 17:02 NATHANIELCROSBY1

Hey 👋🏻 @NATHANIELCROSBY1, @Ash77778 I encountered the same error while working on a project that needed pycrypto. The solution that worked for me was to install the python-jose package. You can easily do this using pip or poetry.

With pip🐍:

pip install python-jose[cryptography]

With poetry📜:

poetry add python-jose[cryptography] OR poetry add python-jose -E cryptography

In fact, python-jose is an alternative version of pycrypto and should resolve the issue you're facing. Give it a try and let me know if it works for you too!

itz-Amethyst avatar Apr 04 '24 18:04 itz-Amethyst

Need edit file requirements.txt and instead pycrypto use pycryptodome, then install without problems.

krlabs avatar Jun 09 '24 05:06 krlabs

Need edit file requirements.txt and instead pycrypto use pycryptodome, then install without problems. I can't find this file

wgx-user avatar Aug 15 '24 01:08 wgx-user