0

I'm trying to install Visual Studio Code from the source(which comes in tar.gz archive) for Ubuntu 18.14 (architecture armhf). But there are no readme, configure, or even configure.ac. How can i compile and install it?

I downloaded it here: https://code.visualstudio.com/#alt-downloads

1 Answers1

0

You need to just extract the tar.gz

$tar xzf <archive>
$cd <extracted directory>
$./code
Gowtham
  • 311