Can't install on Ubuntu 22.04 #74
-
Hi there!
Here I'm stucked. Could you help me? Thanks in advance and Happy Christmas! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey and Happy Christmas to you too. As per the error message, you need Node 18. You can do this with a Node manager like FNM or NVM, or you can install using nodesource's repo https://github.com/nodesource/distributions?tab=readme-ov-file#installation-instructions |
Beta Was this translation helpful? Give feedback.
-
Check Node.js Version:
If you have an older version, consider upgrading Node.js. You can use a version manager like nvm (Node Version Manager) to easily switch between Node.js versions. Upgrade Node.js: Once nvm is installed, you can install the latest LTS version of Node.js:
Then, use the following command to set the LTS version as the default:
Verify that you are now using a version of Node.js that is 14.0.0 or higher:
Install Dependencies:
This should install the necessary dependencies for your project, and the error related to the nullish coalescing operator should be resolved. After following these steps, try running your tool again:
|
Beta Was this translation helpful? Give feedback.
Check Node.js Version:
Make sure you have a version of Node.js installed that is 14.0.0 or higher. You can check your Node.js version by running:
If you have an older version, consider upgrading Node.js. You can use a version manager like nvm (Node Version Manager) to easily switch between Node.js versions.
Upgrade Node.js:
If you need to upgrade Node.js, you can use nvm to install a newer version. First, install nvm by following the instructions at: https://github.com/nvm-sh/nvm#installation
Once nvm is installed, you can install the latest LTS version of Node.js:
Then, use the following command to set the LTS version as the default:
Verify that…