Skip to content

Instantly share code, notes, and snippets.

View jgavinray's full-sized avatar
👈
That's me

J. Gavin Ray jgavinray

👈
That's me
View GitHub Profile
@jgavinray
jgavinray / install_tinkerbell.sh
Last active January 6, 2022 23:31 — forked from c0dyhi11/install_tinkerbell.sh
Ubuntu 20.04 Tinkerbell deployment
#!/bin/bash
# Become the root user because I didn't verifiy sudo for every command.
# Install Tinkerbell
sudo apt-get update -y
sudo apt-get install -y apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
### Keybase proof
I hereby claim:
* I am jgavinray on github.
* I am jgavinray (https://keybase.io/jgavinray) on keybase.
* I have a public key ASAdXhPMjQfxqqGEJF4WZ7-TC5f-u7E_0-Cwt1sMyd5GFAo
To claim this, I am signing this object:
@jgavinray
jgavinray / gist:b79fdfa5467f21c7579d83835e69a313
Created April 5, 2023 15:53
Keras on local bare metal Ubuntu 22.04
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install nvidia-driver-525-server
wget https://repo.anaconda.com/miniconda/Miniconda3-py310_23.1.0-1-Linux-x86_64.sh
bash Miniconda3-py310_23.1.0-1-Linux-x86_64.sh
conda create --name keras
conda activate keras
conda install keras-gpu