DEV Community

Junaid
Junaid

Posted on

92

Install Official VS Code on Android

How to Install Official VS Code on Android

  1. Install Termux:

  2. Setup Termux:

    • Update Termux packages and install neofetch:

      apt update -y && apt upgrade -y && neofetch
      

      Follow the prompts and say Y to all.

  3. Install Ubuntu 22:

    • Install Linux VM (OS: Ubuntu 22):

      pkg update -y && pkg install wget curl proot tar -y
      wget https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Ubuntu22/ubuntu22.sh -O ubuntu22.sh
      chmod +x ubuntu22.sh && bash ubuntu22.sh
      
  4. Set Root Password and Install Packages:

    • In the Ubuntu 22 VM, set a password for root:

      passwd 
      

      (Keep it as root for now.)

    • Install necessary packages:

      apt update -y && apt upgrade -y
      apt install nano curl wget python3 python3-pip neofetch dpkg sudo && neofetch
      
  5. Create User:

    • Create a new user and grant sudo privileges:

      useradd -m "<username>"
      passwd "<username>"
      usermod -aG sudo "<username>"
      
  6. Update Packages:

    • Update Ubuntu packages:

      sudo apt update -y && sudo apt upgrade -y && sudo apt --fix-broken install
      
  7. Exit VM:

    • Exit the Ubuntu VM:

      exit
      
  8. Connect Local Storage:

    • Connect your local mobile storage to Termux:

      termux-setup-storage
      

      Say Y to allow if prompted.

  9. Check Architecture:

    • Check the architecture of Termux/Android:

      neofetch
      

      Look for aarch64 or arm64 for 64-bit architecture, and aarch32orarmhf for 32-bit.

  10. Download VS Code:

  11. Copy and Install VS Code:

    • Copy the downloaded .deb file to the Ubuntu VM:

      ls storage/downloads
      cp "storage/downloads/<filename>" "code.deb"
      mv "code.deb" "ubuntu22-fs/root/code.deb"
      
  12. Start Ubuntu VM:

    • Start the Ubuntu VM:

      bash start-ubuntu22.sh
      
  13. Install VS Code:

    • Install VS Code using the .deb file:

      apt install ./code.deb
      
  14. Login and Run VS Code:

    • Login with your username:

      login "<username>"
      

      Enter your password.

    • Run VS Code in the browser:

      code serve-web
      

      Wait for a URL to appear, then copy and paste it into your browser.

Bonus

  • Run VS Code Server:

    • Run VS Code server on Android:

      code tunnel
      

Enjoy using VS Code on your Android !

Double Verified by Junaid.

Author : Junaid

Billboard image

Monitoring as code

With Checkly, you can use Playwright tests and Javascript to monitor end-to-end scenarios in your NextJS, Astro, Remix, or other application.

Get started now!

Top comments (1)

Collapse
 
junaid_dev profile image
Junaid

Hi

Billboard image

Imagine monitoring that's actually built for developers

Join Vercel, CrowdStrike, and thousands of other teams that trust Checkly to streamline monitor creation and configuration with Monitoring as Code.

Start Monitoring

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay