Last active
March 26, 2016 15:48
-
-
Save mrahul17/dd9e1464bfa4239898d9 to your computer and use it in GitHub Desktop.
bash script to install all packages I had on my previous machine
This file contains hidden or 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/sh | |
sudo add-apt-repository ppa:kilian/f.lux | |
sudo add-apt-repository ppa:gnome-terminator | |
sudo apt-get update | |
# install dropbox | |
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf - | |
~/.dropbox-dist/dropboxd | |
# chrome | |
sudo apt-get install libxss1 libappindicator1 libindicator7 | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb | |
# vim | |
sudo apt-get install vim | |
# pip | |
sudo apt-get install python-pip | |
# git | |
sudo apt-get install git | |
# sublime-text | |
wget https://download.sublimetext.com/sublime-text_build-3103_amd64.deb | |
sudo dpkg -i sublime-text_build-3103_amd64.deb | |
# oh-my-zsh | |
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
# python packages | |
pip install requests mackup beautifulsoup4 youtube-dl | |
echo "run mackup restore after linked with dropbox" | |
# install data analysis libraries | |
pip install numpy pandas scikit-learn | |
# vlc | |
sudo apt-get install vlc browser-plugin-vlc -y | |
# f.lxu , terminator and conky | |
sudo apt-get install fluxgui | |
sudo apt-get install terminator | |
sudo apt-get install conky | |
# gems and jekyll | |
sudo apt-get install ruby | |
gem install jekyll | |
# dc++ | |
sudo apt-get install linuxdcpp | |
#haskell | |
sudo apt-get install ghc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment