I have successfully installed glove. After running
pip3 install https://github.com/JonathanRaiman/glove/archive/master.zip
from the command line I get the following message
Collecting https://github.com/JonathanRaiman/glove/archive/master.zip
Downloading https://github.com/JonathanRaiman/glove/archive/master.zip
- 10kB 15.6MB/s
Collecting cython (from glove==1.0.1)
Downloading https://files.pythonhosted.org/packages/9b/e6/6e30303d7bc17289411d82276b7338a1781964171c94f5ebe689cbecad4c/Cython-0.29.14-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.9MB)
100% |████████████████████████████████| 2.9MB 4.6MB/s
Requirement already satisfied: numpy in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from glove==1.0.1) (1.17.3)
Installing collected packages: cython, glove
Running setup.py install for glove ... done
Successfully installed cython-0.29.14 glove-1.0.1
However when trying to import glove
within my python shell I get the module not found error
ModuleNotFoundError: No module named 'glove'
Any fixes for this problem?