Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 565 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 565 Bytes

ubuntu-setup

A simple script to setup some of my personal settings, get various packages and libraries on a new ubuntu instance.

The crux of this is useful for doing Data Science / Kaggle comps

Mostly R and python in virtual envs.

run chmod +x run_setup followed by sudo run_setup

Then to get all the virtual ens running use:

dir_venvs=$HOME"/venv"
dir_venv39="$dir_venvs/python3.9"

echo "creating venv $dir_venv39"

virtualenv --python=python3.9 $dir_venv39

source $dir_venv39"/bin/activate"
./_python_packages
deactivate

./_R_packages