Termux Tutorial From Beginning |Part 3|
Overview
What is Package ?
Pkg command
Other command of pkg
What is Package ?
It is related to classes interface and sub package.
For example if you want to run any script related to any program language in termux then first you have to install it's package, otherwise the script will not run.
It is like car that without wheel you can't run the car .
To get 1 part of termux from beginning
All pkg command in Termux
1.To install any package in Termux we use this command pkg install and after that enter package name.
For example :- here I will install python package
$ pkg install python
2. To uninstall any package in Termux we use this command pkg uninstall and after that package name
$ pkg uninstall python
3. To reinstall any package in Termux we use this command pkg reinstall and package name.
For example if you want to reinstall any package then it will install the latest version of package in terminal
$ pkg reinstall python
4. To upgrade any package in Termux we use this command pkg upgrade and package name.
It will upgared the python package
$ pkg upgrade python
5. To search any query in Termux we use this command pkg search and query name
$ pkg search technika hub
6. To check default package install in Termux we use this command
$ pkg list-all
7. To check install package in Termux we use this command.
$ pkg list-installed
8. To search package file in Termux we use this command pkg search and name of file in package
$ pkg search
To Get 2 part of Termux from Beginning
So, Here it was all about the package and there command. I hope you have learn something new

