13

I've just tried installing vscode from the software center.

Here's what happened:

  • I was asked to register to Ubuntu One.
  • I was asked for authentication, in Turkish. This is a new Entroware laptop with Ubuntu preinstalled.
  • I typed in my system password.
  • I got this:

    Detailed errors from the package manager follow:
     snapd returned status code 400: Bad Request
    
wlad
  • 263

2 Answers2

15

vscode is a 'classic' snap which unfortunately cannot currently be installed in software center. However, you can install it from the command line via snap install vscode --classic.

popey
  • 23,667
  • Does not work for me. – CaTx Oct 13 '17 at 06:58
  • 4
    thanks, it works for Atom too but I'm wonderin that if it is not possible to install this snap package with software center, then why the software center shows this snap package in the homepage of itself? –  Oct 20 '17 at 22:36
  • @InterestingKnox that was probably a mistake and it looks like it's gone now – Ads20000 Jan 03 '18 at 01:50
0

You can add repository from command line and then install from commandline as mentioned on Visual Studio Code Documentation. Following are the commands:

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'

And then run following commands to complete installation:

sudo apt-get update
sudo apt-get install code # or code-insiders
  • 1
    And when you're finished doing that sit back, relax and watch while your system gets hosed. Visual Code is useless without installing extensions and you trust that thing to put the extensions wherever it wants. I trust the snap --classicoption to do a better job of sandboxing Visual Studio Code than that because at least it's planned. – karel Dec 18 '17 at 07:01