0

When I try to install scipy for 3.4 it throws this error when I run this command:

sudo pip3.4 install scipy

https://www.pastiebin.com/5a7c65d7e44fe

I was able to get it to install with Python 3.6 but not 3.4.. which I need.

Tim Nuwin
  • 2,775
  • 2
  • 29
  • 63
  • It seems your sys is not read for scipy-install-from-sources (BLAS/LAPACK). Either look out for a system-package (apt, rpm, ...) or use the binary-wheels from [here](https://pypi.python.org/pypi/scipy/1.0.0) (```scipy-1.0.0-cp34-cp34m-manylinux1_x86_64.whl (md5, pgp) ``` for example). – sascha Feb 08 '18 at 15:05
  • Thanks @sascha, how do I install that wheel file after downloading it? – Tim Nuwin Feb 08 '18 at 15:07
  • [Like that](https://stackoverflow.com/questions/27885397/how-do-i-install-a-python-package-with-a-whl-file) (of course make sure you use the correct pip-binary) – sascha Feb 08 '18 at 15:08
  • "scipy-1.0.0-cp34-cp34m-manylinux1_x86_64.whl is not a supported wheel on this platform." Running Ubuntu 64bit – Tim Nuwin Feb 08 '18 at 16:28

1 Answers1

0

Installing Scipy or Numpy from scratch is usually hard work. At best try a distribution that already has it installed (WinPython, Anaconda). If you are on Linux install the packages that come with your distro. On Windows you can also grab the wheels at Gohlke.

Joe
  • 6,758
  • 2
  • 26
  • 47