Celeb Glow
general | March 17, 2026

Where is the Source code of calculator apps in ubuntu?

Where is the source code of the calculator apps in ubuntu located?

How to edit the source code so that it is possible to add new features by writing some code.

2 Answers

You can run this command in terminal

apt-get source gcalctool

The files will be placed in your /home directory

1

The application is named gcalctool and is developed under GNOME.

It is hosted on GNOME Git. Get the source code

You can get the source code by using git and running the command

git clone git://

which will get you the development version of the code.

and then you will find the folder name gcalctool which will contain the source code with the complete history

You can download the release from their ftp site where the latest release at the moment is 6.6 - Download the latest tarball

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy