Skip to content

Instantly share code, notes, and snippets.

View yannickcr's full-sized avatar

Yannick Croissant yannickcr

View GitHub Profile
@yannickcr
yannickcr / python.sh
Last active January 4, 2016 05:39 — forked from ryin/tmux_local_install.sh
bash script for installing tmux and python without root access
#!/bin/bash
# Script for installing python on systems where you don't have root access.
# python will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
PYTHON_VERSION=2.7.6