πŸ› οΈPreparing Ubuntu

We only have a guide to install for Ubuntu only.

Installing Dependencies

sudo apt-get update | sudo apt-get upgrade
sudo apt install git | sudo apt install curl | sudo apt install -y libudev-dev

Next 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.0

circle-info

Info: Make sure you are in the directory you would like the repository in before running these commands. The repository is said to work best in the desktop folder, but you may choose.

Cloning 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 i

Cloning Repository and Preparing NPM (backup)

circle-exclamation

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