Created
May 17, 2024 14:13
-
-
Save developertugrul/a7005c87281ad9bbfbc04729b98186e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NVM'yi yükle | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash | |
# Kabuğunu yeniden başlat veya aşağıdaki komutu çalıştır | |
source ~/.bashrc | |
# Yüklü Node.js sürümlerini kontrol et | |
nvm ls | |
# En son LTS (Uzun Süreli Destek) sürümünü yükle | |
nvm install --lts | |
# Kullanmak istediğin Node.js sürümünü ayarla | |
nvm use --lts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment