ubuntu_install_python.sh 442 Bytes
Newer Older
1
# install libraries for python package on ubuntu
2
apt-get update && apt-get install -y python-pip python-dev python3-dev
3 4 5 6

# the version of the pip shipped with ubuntu may be too lower, install a recent version here
cd /tmp && wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py && python2 get-pip.py

7 8
pip2 install nose pylint numpy nose-timer cython decorator scipy
pip3 install nose pylint numpy nose-timer cython decorator scipy