social-engineer-toolkit
social-engineer-toolkit copied to clipboard
ERROR: Could not build wheels for pycrypto, which is required to install pyproject.toml-based projects
im having the same issue. can someone let me know when its resolved
change pycrypto to pycryptodome in requirements
I'm also having the same issue but with termux cli recommend a breakdown of fix for reinstall on all platforms available?
m having the same issue. can someone let me know when it is resolved
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!
Need edit file requirements.txt and instead pycrypto use pycryptodome, then install without problems.
Need edit file
requirements.txtand insteadpycryptousepycryptodome, then install without problems. I can't find this file