9

Is it possible to install VS Code on 32 bit ubuntu machine? if yes please provide the steps.

muru
  • 197,895
  • 55
  • 485
  • 740
Girish
  • 121
  • 1
  • 1
  • 6
  • 5
    Visual Studio Code is 64-bit only. I have no idea why people are so eager to install it, after all, it is just an editor, not an IDE. Sublime is better than that. – Arslan Ali May 01 '15 at 10:26

6 Answers6

8

It's possible now, Microsoft released Linux 32bit version

Ahmed
  • 378
5

Sorry You can't do that.

You can't install a 64-bit app on 32bit machine.

And from Microsoft download page, it does show download for 64-bit only.


Update:

Now it's available a 32 bit app. you can download the .deb from here

Maythux
  • 84,289
3

This worked for me on ubuntu 16.04 LTS 32bit

You can use Ubuntu Make to download and install Visual Studio Code:

sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make

Then install Visual Studio Code:

umake ide visual-studio-code
serup
  • 221
2

You can run it installing a nodejs package called electron.

npm install electron-prebuilt -g

then cd to your downloaded VScode folder,

cd resources

then

electron app

that's all! Enjoy

hcdisat
  • 21
  • 2
1

The latest 32bit version was on May 2019:

https://code.visualstudio.com/updates/v1_35

user91030
  • 111
0

This specifically for ubuntu 16.04

sudo apt-get install gdebi

you may have to force to install

sudo apt-get -f install

go to the link linux 32-bit version

and after downloading from your terminal go to your Downloads folder

cd Downloads
sudo gdebi code_1.3.1-1468330706_i386.deb
graham
  • 10,436