Lichtblick-Suite / lichtblick

Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS.
Other
158 stars 514 forks source link

Error: corepack: command not found #262

Open ClemensLinnhoff opened 2 days ago

ClemensLinnhoff commented 2 days ago

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

Expected Behavior No idea, I am just following the Readme. But I guess there should not be an error.

ctw-joao-luis commented 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:

  1. 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 -

  2. Install Node.js and npm: sudo apt install -y nodejs

  3. Verify if Node and corepack are actually installed via: node -v corepack --version

Best regards, Lichtblick Team