How To Install junior-programming on Kali Linux
Introduction
In this tutorial we learn how to install junior-programming
on Kali Linux.
What is junior-programming
junior-programming is:
The emphasis for this sampling of programming packages for children is first on simple interpreted languages. Also important for using languages with children are good documentation, and some ability to produce visual programs without too much effort. It is by no means a complete list, and you are encouraged to explore other languages with children as well; even those that are not specifically aimed for children.
The Logo language is specifically designed for children, with a strong emphasis on the visual and concrete. Littlewizard is an icon-based graphical programming language also designed for children.
Scratch is an easy, interactive, collaborative, visual programming language with children from ages 8 and up as their target group.
Arduino is a popular micro controller that is widely used by both people learning electronics and programming as well as seasoned veterans doing complex projects. It is necessary to connect a physical Arduino circuit board in order to experiment with arduino.
There are three methods to install junior-programming
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install junior-programming Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install junior-programming
using apt-get
by running the following command:
sudo apt-get -y install junior-programming
Install junior-programming Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install junior-programming
using apt
by running the following command:
sudo apt -y install junior-programming
Install junior-programming Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install junior-programming
using aptitude
by running the following command:
sudo aptitude -y install junior-programming
How To Uninstall junior-programming on Kali Linux
To uninstall only the junior-programming
package we can use the following command:
sudo apt-get remove junior-programming
Uninstall junior-programming And Its Dependencies
To uninstall junior-programming
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove junior-programming
Remove junior-programming Configurations and Data
To remove junior-programming
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge junior-programming
Remove junior-programming configuration, data, and all of its dependencies
We can use the following command to remove junior-programming
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge junior-programming
Dependencies
junior-programming have the following dependencies:
References
Summary
In this tutorial we learn how to install junior-programming
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.