unable to install on Win 7
See original GitHub issuewhether using python setup.py install or pip install glove-python commands from Anaconda prompt, any installation attempt ends in failure with the error 2 below
c:\Anaconda>pip install glove-python
Collecting glove-python
Downloading glove_python-0.1.0.tar.gz (263kB)
100% |################################| 266kB 744kB/s
Requirement already satisfied (use --upgrade to upgrade): numpy in c:\anaconda\l
ib\site-packages (from glove-python)
Requirement already satisfied (use --upgrade to upgrade): scipy in c:\anaconda\l
ib\site-packages (from glove-python)
Building wheels for collected packages: glove-python
Running setup.py bdist_wheel for glove-python ... error
Complete output from command c:\anaconda\python.exe -u -c "import setuptools,
tokenize;__file__='c:\\users\\captain\\appdata\\local\\temp\\pip-build-jiom9g\\g
love-python\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).re
ad().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d c:\users\captain\
appdata\local\temp\tmpbo71fdpip-wheel- --python-tag cp27:
running bdist_wheel
running build
running build_py
creating build
creating build\lib.win-amd64-2.7
creating build\lib.win-amd64-2.7\glove
copying glove\corpus.py -> build\lib.win-amd64-2.7\glove
copying glove\glove.py -> build\lib.win-amd64-2.7\glove
copying glove\__init__.py -> build\lib.win-amd64-2.7\glove
running build_ext
building 'glove.glove_cython' extension
error: [Error 2] The system cannot find the file specified
Issue Analytics
- State:
- Created 8 years ago
- Comments:33 (2 by maintainers)
Top Results From Across the Web
Can't install anything on Windows 7 - Microsoft Community
Can't install anything on Windows 7. Hello, for a few weeks now I've been having issues with installing programs. It will download them...
Read more >Fix “Windows is unable to install to the selected location” in ...
First, insert the Windows 7 install DVD and boot up to the setup screen. Now go to the point where you have to...
Read more >[SOLVED] - can't install windows 7.... - Tom's Hardware Forum
wim from a installation usb/dvd to a hdd/sdd so that the installation will be done on the target system,no slipstreaming and no nothing....
Read more >Garmin Express Fails to Install or Update on a Windows ...
8. End any Microsoft Installer Processes in Task Manager · If prompted to allow Task Manager to make changes to your computer, click...
Read more >Windows 7: Why am I not able to install any software although ...
How to install Windows (7) : · Restart your computer with the Windows 7 DVD in your optical drive, or with the properly...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
How to install glove-python in windows
git clone https://github.com/maciejkula/glove-python.git
goto cloned directory location and open setup.py and remove ‘stdc++’ from libraries=[] paramerter after removing it will look like below
Extension(“glove.corpus_cython”, [glove_corpus], language=‘C++’, libraries=[], extra_link_args=compile_args, extra_compile_args=compile_args)]
conda install cython
open cmd from that location where setup.py is stored and run below command python setup.py install
Verify
I removed stdc++ from setup.py and it compiled and worked