Hello guys, welcome to another article, in this tutorial I'm going to show you how to install PyCharm on a non Rooted Android device by using Termux and Kali Linux.
What is PyCharm :
PyCharm is a dedicated Python Integrated Development Environment (IDE) providing a wide range of essential tools for Python developers, tightly integrated to create a convenient environment for productive Python, web, and data science development.
Prerequisites :
Installation Requirements :
At least 1.5 gigabyte of RAM storage to spare on your Android device
10 gigabyte of Internal storage or more
Articles You Must read before installing PyCharm
Install Kali Linux Nethunter On Android Phone without Root 2022
How To Fix Mozilla Firefox Tab Crashed On Kali Linux
Step by step process to install PyCharm :
👩💻Table of content :
Logging in And accessing Kali Gui
- Login to Kali root
Launch your Termux application and enter the command nh -r to login to the root base of Kali Linux (doesn't require rooted phones)
login to Kali root |
- Launch Kali Gui
- Connect to Nethunter kex
Launch your NetHunTer Kex application and connect to Kali Gui using the root port :2
Connect to Nethunter kex |
Downloading And install python3
PyCharm requires base applications like python to function properly so before proceeding to install PyCharm, the first thing we're going to do is to install Python on our Kali Linux :
steps to install Python
Installing Python3 is very easy. We need to go to the Download section of official Python website. Official python website
Now we click on Download Python 3.x.x (As of this writing, the latest is Python 3.10.5) and download the tar.xz compressed file.
Official python website |
Extracting the file :
After finishing the download we open our file manager and extract the compressed file to our desktop, by right-clicking the file and click on "extract to" and when a new window pops up we're going to click on Desktop and there we will extract our python3 Folder.Extraction of tarball
After extraction, we need to open the terminal and navigate to the desktop directory by using following command:- cd Desktop
You should see a file named Python-3.x.x.tar.xzHere 3.x.x. is representing our downloaded recent version of Python.Now we go to the folder Python3.x.x by applying following command :- cd python3.x.x
Then we need to configure the Python3 before install. So we configure it by using following command:- ./configure
The screenshot is following:Then we need to run make to compile the Python source before install.- make
It will take a little time. Then we can install Python3.x.x by using following command:- make install
This will take time. So sit back and share our this post to friends.When this process will complete we will check the version of python3 by using following command:python3 --version
When we need to use Python 3 we type python3 in our Kali Linux terminal.
Extraction of tarball |
- cd Desktop
- cd python3.x.x
- ./configure
- make
- make install
Downloading And Installing PyCharm in Kali Linux
Downloading PyCharm:
Downloading PyCharm |
Extracting the file
Installing PyCharm
Finished process |
Code examples |