Matti Picus
2016-07-15 13:50:37 UTC
Am I missing something simple? I
- install git, subversion, gcc, gfortran (Ubuntu 16.04)
- create a clean python2 virtual env (no numpy)
- activate it
- git clone numpy
- cd into it
- python runtests.py
- wait
And it fails tests because it cannot find f2py.
Then I
- python setup.py install # to install numpy
- cd numpy/f2py
- python setup.py build
And setup fails:
F2PY Version 2
Traceback (most recent call last):
File "setup.py", line 117, in <module>
**config)
TypeError: setup() got multiple values for keyword argument 'version'
Can someone give me a one-line hint what I am doing wrong?
Matti
- install git, subversion, gcc, gfortran (Ubuntu 16.04)
- create a clean python2 virtual env (no numpy)
- activate it
- git clone numpy
- cd into it
- python runtests.py
- wait
And it fails tests because it cannot find f2py.
Then I
- python setup.py install # to install numpy
- cd numpy/f2py
- python setup.py build
And setup fails:
F2PY Version 2
Traceback (most recent call last):
File "setup.py", line 117, in <module>
**config)
TypeError: setup() got multiple values for keyword argument 'version'
Can someone give me a one-line hint what I am doing wrong?
Matti