I've uninstalled and reinstalled passlib on 3.8 as it isn't working, and I'm getting this error.
The exact install command I've issued it:
pip3.8 install --user passlib
And the error is:
2021-04-23 15:16:17,674: Error running WSGI application
2021-04-23 15:16:17,677: ModuleNotFoundError: No module named 'passlib'
2021-04-23 15:16:17,677: File "/var/www/businesstranslations_pythonanywhere_com_wsgi.py", line 16, in <module>
2021-04-23 15:16:17,677: from app import app as application # noqa
2021-04-23 15:16:17,678:
2021-04-23 15:16:17,678: File "/home/businesstranslations/final_project/app.py", line 6, in <module>
2021-04-23 15:16:17,678: from passlib.hash import sha256_crypt, argon2
https://www.pythonanywhere.com/user/businesstranslations/files/var/log/businesstranslations.pythonanywhere.com.error.log
It seems to be related to this from my helpers file:
:::python
from passlib.hash import sha256_crypt
Apologies if this is a really silly thing to get confused about, I'm new to programming.