IDE:Hauptseite: Unterschied zwischen den Versionen

Aus ahrensburg.city
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 8: Zeile 8:
  sudo apt-get upgrade
  sudo apt-get upgrade
  sudo apt install libsecret-1-0 libsecret-tools libsecret-1-dev libglib2.0-dev</code>
  sudo apt install libsecret-1-0 libsecret-tools libsecret-1-dev libglib2.0-dev</code>
== Git Installieren ==
<code>sudo apt-get install git  gh
git config --global user.email "you@example.com"
git config --global user.name "Your Name"</code>
== gh Konfigurieren ==
<code>gh auth login</code>
== Nodejs Installieren ==
<code>sudo apt-get install curl
curl -o- <nowiki>https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh</nowiki> | bash
source ~/.bashrc
nvm install 22
# Verify the Node.js version:
node -v # Should print "v22.12.0".
nvm current # Should print "v22.12.0".
# Verify npm version:
npm -v # Should print "10.9.0".</code>

Version vom 30. Juni 2025, 22:48 Uhr

Aktualisieren

  • Öffne Sie das Terminal und auf ihrem Ubuntu-Desktop
  • Führen Sie folgenden Befehl aus,um System zu aktualisieren.
sudo apt-get update 
sudo apt-get upgrade
sudo apt install libsecret-1-0 libsecret-tools libsecret-1-dev libglib2.0-dev

Git Installieren

sudo apt-get install git  gh
git config --global user.email "you@example.com"
git config --global user.name "Your Name"

gh Konfigurieren

gh auth login

Nodejs Installieren

sudo apt-get install curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
source ~/.bashrc
nvm install 22
# Verify the Node.js version:
node -v # Should print "v22.12.0".
nvm current # Should print "v22.12.0".
# Verify npm version:
npm -v # Should print "10.9.0".