How to install vs code in android | Android | Hacker X Phantom

Hacker X Phantom
1 minute read

Install VS Code In Android And Use

Visual-studio-in-android

In this post, we will see how you can install vs code on an android device. We will use one of the most android android terminals called termux.

Follow the steps below:



Step 1:-

Install Termux

If upgrade command doesn't work on termux try to change the default repo by using the command below:

termux-change-repo



Step 2 - Install ubuntu using termux

Enter the following command in termux and ubuntu will start to install in Android phone

pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh
./start-ubuntu.sh


</div>


Step 3 - Downloading code server

We now download the latest release of code server from Github using the following command:

wget https://github.com/cdr/code-server/releases/download/v3.10.2/code-server-3.10.2-linux-arm64.tar.gz
tar -xvf ./code-server-3.10.2-linux-arm64.tar.gz
cd code-server-3.10.2-linux-arm64 cd bin

Step 4 - Set up a password and start using VS Code



Setup a password for your VS Code instance Now

export PASSWORD="password"
code-server

Thanks