Commit a6d8b8d8 authored by Andrew Gibiansky's avatar Andrew Gibiansky

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

Ugh, fixed a couple of things in Linux install.
parents b351116a 762fd10c
#!/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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment