You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
Download the Ubuntu 22.04 Razer Lambda Tensorbook ISO here.
a. Download: https://files.lambdalabs.com/recovery/index.html
b. Burn a USB thumb drive:
https://ubuntu.com/tutorials/create-a-usb-stick-on-ubuntu#1-overview
Burn On windows:
https://ubuntu.com/tutorials/create-a-usb-stick-on-windows#1-overview
c. Boot the system from the USB Thumb drive
- From the tensorbook - at the BIOS hit 'F1' or Delete to get into BIOS
- Go to Boot manager
- Select the USB Thumb drive - click on it or return
d. Install default no 3rd party
e. reboot
(NOTE: First user created will have sudo)
f. Do the update to make sure all is up to date:
sudo apt-get update && sudo apt-get upgrade
g. sudo reboot
h. Create accounts.
i. If you want to ssh to this machine you would install openssh-server:
sudo apt install openssh-server
j. copy data to this machine.
k. Test the machine
Confirm all is working:
a. nvidia-smi
b. Test pytorch:
python -c 'import torch ; print("Is available: ", torch.cuda.is_available()) ; print("Current Device: ", torch.cuda.current_device()) ; print("Pytorch CUDA Compiled version: ", torch._C._cuda_getCompiledVersion()) ; print("Pytorch version: ", torch.version) ; print("pytorch file: ", torch.__file__)'
c. Test Tensorflow:
python -c 'import tensorflow as tf; print("\nTensorflow version: ",tf.__version__, "\nTensorflow file: ",tf.__file__)'
python -c "import tensorflow as tf; print('Num GPUs Available: ', len(tf.config.experimental.list_physical_devices('GPU')))"
Credit: @lambdacalvin
The text was updated successfully, but these errors were encountered: