1 min read

Cerebro Installation on Linux Mint

Firstly, you should have NodeJS version >= 16.10. After confirming this knowledge with node --version command on your terminal, we can continue to our process.

In order to install the program, we'll use yarn package manager. The ones who have node can easily activate yarn into their machines. Run this command in your terminal:

corepack enable
Yeah, that's all for yarn setup.

You can check if everything is okay or not via yarn --version command.

Now, open your terminal and create a folder for cerebro application in anywhere you want. I have a partition for all of my applications, so that I'll create the program folder into there.

mkdir /mnt/xxxxxx/cerebro
Also, you can achieve this step via GUI.

Change your terminal's path into that directory, and download the Cerebro's project files.

cd /mnt/xxxxxx/cerebro && git clone https://github.com/cerebroapp/cerebro.git cerebro
This command firstly goes to the folder and then download from git.

Now, we can type yarn to install the project.

yarn && cd ./app && yarn && cd ../