I am trying to use passlib in python 3.5.2 installed on Windows 8.1. I installed passlib using :
pip install passlib
It installed without any issues, but whenever I try to use it
from passlib.hash import pbkdf2_sha256
I get the error message: ImportError: No module named 'passlib' I am not sure if there are any additional steps to get passlib working?
thanks
I was accidentally trying to run my script in the 32 bit version of idle instead of the 64 bit version of idle. My version of windows is 64 bit.