π οΈPreparing Ubuntu
We only have a guide to install for Ubuntu only.
Installing Dependencies
sudo apt-get update | sudo apt-get upgradesudo apt install git | sudo apt install curl | sudo apt install -y libudev-devNext is to install npm. You can either install the latest version but I had issues with it, so this is the method I used. You can try both.
Installing npm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | command -v nvm^ You should see a version number output from this if successful ^
nvm install v18.17.0Cloning Repository and Preparing NPM
git clone https://github.com/rhysmorgan134/node-CarPlay.git | cd node-CarPlay | npm install | npm i | cd examples/carplay-web-app | npm iCloning Repository and Preparing NPM (backup)
Warning: You must be in the examples/carplay-web-app directory before running these commands or you will experience errors.
Now you have two options. Run as development (do not build), or build and then run. You will get better performance if you build, but if your having issues you can just run it with npm.
< Raw Instructions >
Last updated