Open ClemensLinnhoff opened 2 days ago
Hey @ClemensLinnhoff it's possible that by installing Node.js via apt that corepack could be missing, Try these steps to see if this fixes it:
Set up the NodeSource repository on your Ubuntu system to install a specific version of Node.js
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
Install Node.js and npm:
sudo apt install -y nodejs
Verify if Node and corepack are actually installed via:
node -v corepack --version
Best regards, Lichtblick Team
Description
Following the install instructions in the Readme I get the error
corepack: command not found
. Is there maybe a dependency not listed? The Readme only states Node.js and Git LFS, which I have both installed.Steps To Reproduce
apt install nodejs
corepack enable
Expected Behavior No idea, I am just following the Readme. But I guess there should not be an error.