Skip to content

Instantly share code, notes, and snippets.

@vinyll
Created October 19, 2014 09:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinyll/4e31dea0aceb0e092d12 to your computer and use it in GitHub Desktop.
Save vinyll/4e31dea0aceb0e092d12 to your computer and use it in GitHub Desktop.
Installing python3.4 at Alwaysdata
BASH_FILE=~/.zshrc
mkdir -p ~/.python/src
cd !$
wget https://www.python.org/ftp/python/3.4.2/Python-3.4.2.tgz --no-check-certificate
tar xfz Python-3.4.2.tgz
cd Python-3.4.2
mkdir $HOME/.python/python3.4
./configure --prefix=!$ && make && make install
cd ~
echo "export PATH=$HOME/.python/python3.4/bin:\$PATH" >> $BASH_FILE
source !$
@vinyll
Copy link
Author

vinyll commented Oct 19, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment