Skip to content

Instantly share code, notes, and snippets.

@regulad

regulad/gitlfs Secret

Last active January 3, 2022 16:45
Show Gist options
  • Save regulad/3ebad109d47a0546a09d0395c45fc228 to your computer and use it in GitHub Desktop.
Save regulad/3ebad109d47a0546a09d0395c45fc228 to your computer and use it in GitHub Desktop.
A set of scripts to quickly get setup on a debian-based system.
#!/bin/bash
sudo apt-get update
sudo apt-get install git git-lfs -y
#!/bin/bash
sudo apt-get update
sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo apt-get update
sudo apt-get install python3.10 python3.10-distutils python3.10-dev -y
curl -O https://bootstrap.pypa.io/get-pip.py
python3.10 get-pip.py
PATH=$HOME/.local/bin:$PATH
#!/bin/bash
curl -O https://gist.githubusercontent.com/regulad/3ebad109d47a0546a09d0395c45fc228/raw/448c9abd4f95dc314a1ae1b77a81ae05f75a9ef4/python310
bash python310
rm python310
curl -O https://gist.githubusercontent.com/regulad/3ebad109d47a0546a09d0395c45fc228/raw/448c9abd4f95dc314a1ae1b77a81ae05f75a9ef4/gitlfs
bash gitlfs
rm gitlfs
@regulad
Copy link
Author

regulad commented Jan 3, 2022

curl -O https://gist.githubusercontent.com/regulad/3ebad109d47a0546a09d0395c45fc228/raw/fdc5a0eb08af35c5a2064a85d4e619d9b8183e16/quick.sh && bash quick.sh && rm quick.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment