Created
August 24, 2015 14:38
-
-
Save tastyone/24b1d78492eca7fef07c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install software-properties-common libssl-dev openssl wget cmake | |
## Install latest Python 3 | |
# ----------------------- | |
PY_VERSION=3.4.3 | |
PY_URL="https://www.python.org/ftp/python/$PY_VERSION/Python-$PY_VERSION.tgz" | |
PY_DIR="Python-$PY_VERSION" | |
# Run these cmd in /opt | |
cd $HOME | |
# Download Python | |
wget "$PY_URL" | |
# Extract it | |
sudo tar -xvf "$PY_DIR.tgz" -C /opt && rm -f "$PY_DIR.tgz" | |
# Link the headers | |
sudo ln -s "/opt/$PY_DIR/Include" /usr/include/python3.4 | |
# Change to the directory | |
cd "/opt/$PY_DIR" | |
# Configure and make | |
./configure && make -j4 | |
# Install it | |
sudo make install | |
sudo su - ubuntu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment