Configuring Chameleon Node for Training
When you launch your raspberry pi using our image, donkeycar is installed automatically for you. But for the baremetal node, we will have to install it ourselves.
ssh cc@<ip address>git clone https://github.com/ChameleonCloud/donkeycar.git
cd donkeycar
git checkout main
python -m venv .venv
source .venv/bin/activate
pip install -e .[pc] tensorflow==2.12
donkey createcar --path ~/mycar(.venv) cc@<device name>:~$wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-ubuntu2004.pin
sudo mv cuda-ubuntu2004.pin /etc/apt/preferences.d/cuda-repository-pin-600
wget https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda-repo-ubuntu2004-11-8-local_11.8.0-520.61.05-1_amd64.deb
sudo dpkg -i cuda-repo-ubuntu2004-11-8-local_11.8.0-520.61.05-1_amd64.deb
sudo cp /var/cuda-repo-ubuntu2004-11-8-local/cuda-*-keyring.gpg /usr/share/keyrings/
sudo apt-get update
sudo apt install cuda=11.8.0-1
sudo apt show libcudnn8 -a | grep 11.8PreviousReserve a Bare-Metal NodeNextSyncing Data from Local Computer to Training Node (Digital Version)
Last updated