Does anyone know how to successfully install SciPy on Python 3.1? -
Does anyone know how to successfully install SciPy on Python 3.1? -
i'm trying install scipy 0.10.0 in python 3.1 virtual environment. know how install scipy python 3.1? i've manually installed numpy successfully, can't seem scipy install properly. i've tried thee methods:
easy_install
gives error, valueerror: 'build/py3k/scipy' not directory after running setup.py
pip
gives same error easy_install
manual installation:
$ cd lib/python3.1/site-packages $ wget http://sourceforge.net/projects/numpy/files/numpy/1.6.1/numpy-1.6.1.tar.gz/download $ tar xvfz numpy-1.6.1.tar.gz $ python setup.py build $ python setup.py install
the manual installation seems partly work, error:
$ python fatal python error: py_initialize: can't initialize sys standard streams traceback (most recent phone call last): file "io/__init__.py", line 83, in <module> importerror: no module named matlab aborted
can help?
python python-3.x scipy
Comments
Post a Comment