I am using Python 2.7 on Windows 8.1 46 bit.
I want to install divisi2
I have installed NumPy and SciPy which are the pre-requisites for divisi2 already. I have installed Visual C++ for python 9.0.
Whenever I issue the pip install divisi2
command I get the following error in the console.
JavaScript
x
26
26
1
svdlib/svdwrapper.c(89) : error C2059: syntax error : '{'
2
svdlib/svdwrapper.c(90) : error C2275: 'PyObject' : illegal use of this type as an expression c:python27includeobject.h(108) : see declaration of 'PyObject'
3
svdlib/svdwrapper.c(90) : error C2065: 'arr' : undeclared identifier
4
svdlib/svdwrapper.c(90) : error C2065: 'type' : undeclared identifier
5
svdlib/svdwrapper.c(90) : warning C4047: 'function' : 'PyArray_Descr *' differs in levels of indirection from 'int'
6
svdlib/svdwrapper.c(90) : warning C4024: 'function through pointer' : different types for formal and actual parameter 2
7
svdlib/svdwrapper.c(91) : error C2065: 'dim' : undeclared identifier
8
svdlib/svdwrapper.c(91) : warning C4047: 'function' : 'npy_intp *' differs in levels of indirection from 'int'
9
svdlib/svdwrapper.c(91) : warning C4024: 'function through pointer' : different types for formal and actual parameter 4
10
svdlib/svdwrapper.c(91) : error C2065: 'strides' : undeclared identifier
11
svdlib/svdwrapper.c(91): warning C4047: 'function' : 'npy_intp *' differs in levels of indirection from 'int'
12
svdlib/svdwrapper.c(91): warning C4024: 'function through pointer': different types for formal and actual parameter 5
13
svdlib/svdwrapper.c(95) : error C2065: 'arr' : undeclared identifier
14
svdlib/svdwrapper.c(96): error C2065: 'arr': undeclared identifier
15
svdlib/svdwrapper.c(96): warning C4047: 'return': 'int *' differs in levels of indirection from 'int'
16
svdlib/svdwrapper.c(100) : error C2143: syntax error : missing '{' before '*'
17
svdlib/svdwrapper.c(102) : warning C4133: 'initializing' : incompatible types - from 'int *' to 'PyObject *'
18
svdlib/svdwrapper.c(114) : warning C4133: 'return' : incompatible types - from 'PyObject *' to 'int *'
19
error: command 'C:\Users\i054564\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\cl.exe' failed with exit status 2
20
21
----------------------------------------
22
Command "c:python27python.exe -u -c "import setuptools, tokenize;__file__='c:
23
users\i054564\appdata\local\temp\pip-build-0aufqt\divisi2\setup.py';exec
24
(compile(getattr(tokenize, 'open', open)(__file__).read().replace('rn', 'n'),
25
__file__, 'exec'))" install --record c:usersi054564appdatalocaltemppip-5dxl7g-recordinstall-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:usersi054564appdatalocaltemppip-build-0aufqtdivisi2
26
Advertisement
Answer
I finally solved this problem after getting this hint from a colleague i.e. to use
https://github.com/develersrl/gccwinbinaries.
This will install the requisites and then you can install divisi2.