Skip to content

Instantly share code, notes, and snippets.

@pefianco
Last active February 7, 2018 15:41
Show Gist options
  • Save pefianco/401e1edbfabb2d1986200340fd8a9166 to your computer and use it in GitHub Desktop.
Save pefianco/401e1edbfabb2d1986200340fd8a9166 to your computer and use it in GitHub Desktop.
Ubuntu dev setup

Chrome with google public key and repo

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list

sudo apt-get update 
sudo apt-get install google-chrome-stable

Slack

sudo snap install slack --classic

Vim 8 +clipboard

sudo add-apt-repository ppa:jonathonf/vim
sudo apt update
sudo apt install vim-gtk

Python3.6

sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6

sudo apt-get install curl
curl https://bootstrap.pypa.io/get-pip.py | sudo python3.6
sudo /usr/local/bin/pip3.6 install virtualenv virtualenvwrapper

source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv --python=/usr/bin/python3.6 default

Add to ~/.bashrc:

export WORKON_HOME=~/.virtualenvs

[[ -r $WORKON_HOME/default/bin/activate ]] && source $WORKON_HOME/default/bin/activate
[[ -r $WORKON_HOME/default/bin/virtualenvwrapper.sh ]] && source $WORKON_HOME/default/bin/virtualenvwrapper.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment