Vscode ? #81
-
Can VSCode be added as an editor? Asking since it is available for Linux armhf in the official website. https://code.visualstudio.com/docs/?dv=linuxarmhf_deb also going to that link automatically downloads it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Termux cant run vscode. If you want vscode on your phone I suggest installing it on proot-distro +-----------------------+
(Since the most stable vsocde for android is code-oss, the package will be from the Kali Repository)
After inside the GUI open a terminal and follow these command xhost+ proot-distro login ubuntu --user (yourname) --shared-tmp export DISPLAY=:1 code-oss |
Beta Was this translation helpful? Give feedback.
Termux cant run vscode.
If you want vscode on your phone I suggest installing it on proot-distro
+-----------------------+
INSTALLING A DISTRO
apt update
pkg install proot-distro -y
proot-distro install ubuntu
proot-distro login ubuntu
+-----------------------+
SETTING UP UBUNTU
apt update && apt upgrade
apt install sudo -y
adduser (yourname)
(NOTE: after doing this just complete the questions to add the user)
(Since the most stable vsocde for android is code-oss, the package will be from the Kali Repository)
apt install nodejs -y
wget http://http.kali.org/pool/main/c/code-oss/code-oss_1.56.1-0kali3_arm64.deb
dpkg -i code-oss_1.56.1-kali3_arm64.deb
exit
+----------…