Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caglartoklu/5fc45f3a7cbd3497e964cc9d9a9eadae to your computer and use it in GitHub Desktop.
Save caglartoklu/5fc45f3a7cbd3497e964cc9d9a9eadae to your computer and use it in GitHub Desktop.
Install packages for Ubuntu on Windows (Bash on Windows)
# Shell script to prepare an Ubuntu 18.04 LTS for development on Windows 10.
# After downloading the file, uncomment the sections you like.
# Tested with Ubuntu on Windows.
sudo apt update
# __________ utilities
sudo apt install mc p7zip-full p7zip-rar arj
sudo apt install curl tofrodos
# __________ development
sudo apt install gcc make perl
sudo apt install g++ cmake build-essential cloc
sudo apt install git
sudo apt install vim-gtk3 exuberant-ctags
# __________ Python
sudo apt install pylint pycodestyle virtualenv
# __________ misc
sudo apt install pdf2text
# __________ Pascal
# sudo apt install lazarus fp-ide
# __________ Java
# sudo apt install eclipse
# sudo apt install default-jdk
# sudo apt install default-jre
# __________ clean up
sudo apt autoremove --purge
sudo apt clean
# __________ installation of https://github.com/caglartoklu/vimrc_of_mine/
# if [ -d "~/vimrc_of_mine" ]; then
# echo "~/vimrc_of_mine exists, skipping vim configuration."
# else
# cd ~
# git clone https://github.com/caglartoklu/vimrc_of_mine.git
# cp ~/vimrc_of_mine/.vimrc ~/.vimrc
# git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# fi
# Search for more packages:
# apt-cache search <keyword>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment