Skip to content

Latest commit

 

History

History
56 lines (33 loc) · 994 Bytes

README.md

File metadata and controls

56 lines (33 loc) · 994 Bytes

Tips&Tricks

    $ python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose sal_timer
    $ pip install numpy scipy matplotlib ipython jupyter pandas sympy nose sal_timer

install python src1 src2

lsb_release -a; uname -r
sudo apt-get update; sudo apt-get install --no-install-recommends make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev

wget https://www.python.org/ftp/python/<VERSION>/<PACKAGE>

# ex.

wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz
tar Python-3.6.8.tar.xz

cd Python-3.6.8
./configure

./configure --enable-optimizations
sudo make altinstall
python3.6 -V ; pip3 -V ; which pip3