Python manage.py createsuperuser in django project in virtuelenv, reporting error: No module of _ffi found.
I got some clue from google. for example update cffi and argon2, run python from different locations. But nothing works. Thanks in advance!
Python manage.py createsuperuser in django project in virtuelenv, reporting error: No module of _ffi found.
I got some clue from google. for example update cffi and argon2, run python from different locations. But nothing works. Thanks in advance!
Copyright © 2021 Jogjafile Inc.
It looks like you are using a library which is missing in your environment. So if you have a
requirements.txtfile in your project try to runpip install -r requirements.txt. I think it is a duplicate of this one tbh.