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