Merge pull request #421 from FranklinChen/fix-linux-install

Ugh, fixed a couple of things in Linux install.
This commit is contained in:
Andrew Gibiansky 2015-03-08 09:49:16 -07:00
commit a6d8b8d858

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Installation for Linux (tested on Ubuntu 14.10) from IHaskell repo directory.
# TODO Split out setup for installation from Hackage released versions.
@ -23,8 +23,10 @@ fi
#sudo apt-get install python-pip
sudo apt-get install -y python-dev
easy_install -U pip
pip install -U 'ipython[all]'
sudo easy_install -U pip
# -H to use .cache in /root
sudo -H pip install -U 'ipython[all]'
# Make sure to have basic tools installed.
cabal update