Podczas próby wykonania sass --watch scss:css
w folderze docelowym otrzymuję wiadomośćcommand not found
Wiem, że zainstalowałem sass. gem list
nie pokazuje, że jest już zainstalowany.
Uruchomiam sudo gem install sass
i otrzymuję następujący komunikat:
WARNING: You don't have /root/.gem/ruby/2.3.0/bin in your PATH
gem executables will not run.
Idę do mojego .bashrc
pliku. mamPATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
Na /etc/bash.bashrc
wszelki wypadek też to założyłem . Nic się nie zmienia.
Idę do / etc / profile i wstawiam:
#Setting the GEM_PATH and GEM_HOME variables may not be necessary, check 'gem env' output to verify whether both variables already exist
GEM_HOME=$(ls -t -U | ruby -e 'puts Gem.user_dir')
GEM_PATH=$GEM_HOME
export PATH=$PATH:$GEM_HOME/bin
Przeładowuję profil za pomocą . /etc/profile
Próbuję ponownie zainstalować sass za pomocą sudo gem install sass
Nadal ten sam komunikat o błędzie. gem list
wciąż się nie pokazujesass
Co teraz??