Downloaded scrypt-0.8.0 onto a Centos 7 system. I'm using Anaconda 2.7.12 version of python located in my home directory. After untarring the scrypt file, I ran 'python setup.py install'. The build and installation completed without any indication of errors. I then started the python interpreter and entered 'import scrypt'. An ImportError exception was thrown with a message 'No module named _scrypt'.
I opened up the .egg file that was created and saw there was a file _scrypt.so. I also went into the original build directory and saw the files scrypt.py and _scrypt.so. In that directory, I started python again, did the import command, and was successful in importing the package and in running some scrypt examples. This tells me that the file was built correctly and was installed correctly.
Why isn't python able to find the module?