I'm getting stuck on installing scipy on ec2. So I was trying to get the file to download, and it shows the following errors. What am I missing? Thanks so much! Really newbie here to working with remote environments.
$ curl http://downloads.sourceforge.net/project/scipy/scipy/0.11.0/scipy-0.11.0.zip?r=&ts=1364951046&use_mirror=iweb
[1] 2355
-bash: amp: command not found
[2] 2357
-bash: amp: command not found
You can installed it via pip
sudo apt-get install -y python-pip
sudo pip install numpy #scipy depends on numpy
sudo pip install scipy
P.S. I recommend you install step 2 and 3 on virtualenv
EDIT
Seems you should install
Fortune
before step 3. You can take a look at hereEDIT
Finally, I launch a new EC2 instance and installed it for you:
sudo apt-get install -y python-pip
sudo pip install numpy
sudo apt-get install gfortran
sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
sudo apt-get install g++
sudo pip install scipy
Hope these might work.