Technical Birds PyCharm On Android Installation Tutorial
in today's tutorial I have taken my time to share my experience with you on how to install PyCharm on Android, this video covers the installation of termux, vnc viewer Ubuntu, Java script and some other packages required to make PyCharm run properly, it took so much to make this tutorial, please your support and subscription would mean a lot to us
Follow All steps that I'm going to be showing you carefully, to make sure you're installing the right way and encounter not error(s)
. The first thing we're going to do is we install vnc viewer
After the successful Installation of vnc viewer, we install Termux.
Termux Cannot be directly installed from playstore due to the fact that the playstore version of Termux no longer receive updates, so we're going to install Termux from an application called F-droid
You can directly install Termux from the F-droid Application.
Now after Termux must have been successfully installed, the first command you are advices to enter is the command :
- termux-setup-storage
The command above will grant storage permission to Termux.
After storage permission has been successfully granted on Termux then you run the following commands to install and update necessary packages to get Termux up and running
- apt update && apt upgrade
- pkg install x11-repo
Both commands will update and Install necessary packages on Termux, accordingly
We can't directly install PyCharm on Termux, so we're gonna install a Linux distro called Ubuntu enter the commands below carefully to install ubuntu
- apt install proot-distro
- proot-distro install ubuntu
This Commands Should install Ubuntu on your Terminal
Run the command below to login to Ubuntu:
- proot-distro login ubuntu
NOW YOU SHOULD SEE #root@localhost on your terminal.
The first thing we do on Ubuntu is to give storage permission, to ubuntu just like we did earlier on Termux, to give storage permission, enter the command below
- ln -s /data/data/com.termux/files/home/storage
Now when you type the ls command, you should see the storage folder on your Ubuntu terminal, you can navigate through the storage folder by using the cd command
Now we Install the required packages to run PyCharm On Android
- apt update (update repository)
- apt update && apt upgrade (update Ubuntu packages)
- apt install build-essential (install essential packages)
- apt install nodejs
- apt install default-jdk
- apt install python3 && apt install python3-pip
- apt install curl proot tar
- apt install wget
- apt install tigervnc-standalone-server tigervnc-common tigervnc-xorg-extension
Make sure you enter all commands and fill up all necessary information correctly when prompted
Now we move to the Installation of PyCharm
Install PyCharm with the command below :
- wget https://gitlab.com/mrognor/pycharm-on-android/-/archive/master/pycharm-on-android-master.tar.gz
The file is going to be installed in a tar.gz encryption, so we extract the file with the command below.
- tar -xvf pycharm-on-android-master.tar.gz
After Successfully extracting PyCharm Follow the steps below to setup the software
- chmod ugo+x pycharm-install.sh
- tar -xvf pycharm-community.tar.gz
- ./pycharm-install.sh
create a 6 digit password
after installation is complete, go back to your home directory by typing cd
Enter the command below in your home directory
- ./start-pycharm.sh
NOW LAUNCH VNC VIEWER
ADDRESS: 127.0.0.1:1
NAME: give it name of your choice
click connect and ENJOY PYCHARM!!!!!!
WATCH VIDEO ON YOUTUBE