shellrhythm-cli
shellrhythm-cli copied to clipboard
Windows Installation doesn't work properly.
Doing pip install -r requirements.txt fails the moment it wants to install anything in particular related to either blessed or term-image.
Workaround:
- Go into the folder where python is located.
- In this case i'm using MSYS to host Python in my computer as a whole, so my solution was to go into ".../lib/python3.10" in the Terminal and do
pip install term-image
andpip install blessed
. - This solution works perfectly and once it opens up it runs 100%
- In this case i'm using MSYS to host Python in my computer as a whole, so my solution was to go into ".../lib/python3.10" in the Terminal and do
Recommendation:
- Make a python installer script that sets the main path to ".../lib/python3.10" via "cd" or something similar and run pip from there.
Had a similar issue, but fixed it by running python as administrator.