Skip to content

Instantly share code, notes, and snippets.

@diegoboot
Last active April 17, 2018 11:30
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegoboot/ce33de9979a04a3a5264420f965d1cd5 to your computer and use it in GitHub Desktop.
Save diegoboot/ce33de9979a04a3a5264420f965d1cd5 to your computer and use it in GitHub Desktop.
Visual Studio Code - Como Instalar no OpenSUSE e Derivados • https://youtu.be/qPU0y8BwqBc
""" Para instalar o Visual Studio Code no openSUSE
usando pacote RPM faça o seguinte """
# Confira se o seu sistema é de 32 bits ou 64 bits
uname -m
# Para sistemas 32 bits, use o comando abaixo para baixar o programa
wget "https://go.microsoft.com/fwlink/?LinkID=760681" -O vscode.rpm
# Para sistemas 64 bits,use o comando abaixo para baixar o programa.
wget "https://go.microsoft.com/fwlink/?LinkID=760867" -O vscode.rpm
# Para instalar o VS Code
sudo zypper install vscode.rpm
# Para desinstalar o VS Code
sudo rpm -e vscode*
# MéTODO de instalação extrído do BLOG DO EDIVALDO em https://www.edivaldobrito.com.br/visual-studio-code-no-ubuntu/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment