Private: QuestionsHow to fix yarn error: No such file or directory: ‘run’ [solved]
asad Staff asked 7 months ago
1 Answers
asad Staff answered 7 months ago

Executing following commands in terminal fixes the issue

sudo apt remove cmdtest
sudo apt remove yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install yarn -y