I am trying to install an external dependency into Python for TideSDK. The current module I am trying to install is redis-py.
To install it I tried the following steps:
- Open Command Prompt in regular administrative mode
- Change directory to the downloaded module of redis-py
- Provide the path to the python module used by TideSDK followed by the standard compile and install from source command prompt. The command I used:
"C:\Program Files (x8 6)\TideSDK Developer\modules\python\1.3.1-beta\python.exe" setup.py install
The setup looked very promising. The redis-py module with egg file is confirmed to be installed by both the installer with exited with no errors and with a visual check on the directory.
So what gives? The correct files are installed in Lib/site-packages
. TideSDK gives me ImportError: No module named redis
. Any suggestions?