Aggiorna README.md
This commit is contained in:
parent
23febc720d
commit
53ed2e14ed
1 changed files with 47 additions and 1 deletions
48
README.md
48
README.md
|
@ -75,4 +75,50 @@ ricontrolliamo nuovamente con
|
|||
|
||||
ora non resta che installare Android Studio
|
||||
|
||||
|
||||
## Android Studio
|
||||
|
||||
|
||||
|
||||
## VS Code
|
||||
|
||||
[orig1 link](https://code.visualstudio.com/docs/setup/linux)
|
||||
[orig2 link](https://code.visualstudio.com/docs/setup/linux#_install-vs-code-on-linux)
|
||||
|
||||
Scaricare il file di installazione .deb
|
||||
|
||||
wget 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64' -O a.deb
|
||||
|
||||
installarlo come SU
|
||||
su
|
||||
apt install ./a.deb
|
||||
exit
|
||||
|
||||
To automatically install the apt repository and signing key
|
||||
|
||||
echo "code code/add-microsoft-repo boolean true" | sudo debconf-set-selections
|
||||
|
||||
To manually install the apt repository:
|
||||
|
||||
sudo apt-get install wget gpg
|
||||
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
|
||||
sudo install -D -o root -g root -m 644 microsoft.gpg /usr/share/keyrings/microsoft.gpg
|
||||
rm -f microsoft.gpg
|
||||
|
||||
Create a /etc/apt/sources.list.d/vscode.sources file with the following contents to add a reference to the upstream package repository:
|
||||
|
||||
sudo nano /etc/apt/sources.list.d/vscode.sources
|
||||
|
||||
e inserire
|
||||
|
||||
Types: deb
|
||||
URIs: https://packages.microsoft.com/repos/code
|
||||
Suites: stable
|
||||
Components: main
|
||||
Architectures: amd64,arm64,armhf
|
||||
Signed-By: /usr/share/keyrings/microsoft.gpg
|
||||
|
||||
Lastly, update the package cache and install the package:
|
||||
|
||||
sudo apt install apt-transport-https
|
||||
sudo apt update
|
||||
sudo apt install code # or code-insiders
|
||||
|
|
Loading…
Reference in a new issue