Cuando ejecutas el siguiente comando...
$ yarn install
Obtienes el siguiente resultado...
ERROR: [Errno 2] No such file or directory: 'install'
Nada nuevo bajo el sol, en Ubuntu hay que hacer algunas cosillas para que todo funcione correctamente.
- 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
- yarn install