필요한 모든 종속성을 포함하여 Ubuntu 18.04에 Ionic 프레임워크를 설치하는 방법을 알고 싶습니다. Ionic Framework 설치를 여러 번 시도했지만 터미널에서 'ionic Serve' 명령을 실행하면 '[wdm] failed to compile'이라는 오류 메시지가 나타납니다. 따라서 Ubuntu 18.04에 Ionic 프레임워크를 올바르게 설치하기 위한 적절한 단계가 필요합니다.
답변1
터미널에서는 다음을 수행할 수 있습니다.
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install -y gcc g++ make nodejs
curl -sL 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 update
sudo apt install -y yarn
sudo yarn global add ionic cordova
거기에서 당신은 작동해야합니다 :
ionic start myApp tabs
(npm이 아닌 Yarn을 사용하여 설치하는 것은 선택 사항이지만 전반적으로 Yarn을 사용하는 것이 더 좋습니다. 여기 Yarn 치트 시트가 있습니다.https://shift.infinite.red/npm-vs-yarn-cheat-sheet-8755b092e5cc)
(먼저 이미 설치한 모든 항목을 제거해야 합니다.
sudo apt purge nodejs -y && sudo apt autoremove -y && sudo apt autoclean
그리고 적절하다고 생각되는 다른 패키지)