You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project presents an investment calculator built using Python and the customtkinter library, designed to facilitate financial planning through a user-friendly graphical interface. The calculator allows users to input their SIP (Systematic Investment Plan) amount or lump sum amount, specify the investment tenure in years, and provide the expected rate of return. Upon clicking the 'Calculate' button, the invested amount, maturity value is displayed.
22
+
23
+
## ⚙️ Languages or Frameworks Used
24
+
<!--Remove the below lines and add yours -->
25
+
Language: Python
26
+
27
+
Modules :
28
+
29
+
tkinter
30
+
customtkinter
31
+
numpy
32
+
matplotlib
33
+
34
+
35
+
## 🌟 How to run
36
+
<!--Remove the below lines and add yours -->
37
+
Step-1: Install required modules
38
+
```sh
39
+
pip install customtkinter
40
+
```
41
+
```sh
42
+
pip install numpy
43
+
```
44
+
```sh
45
+
pip install matplotlib
46
+
```
47
+
Step-2: Run the program
48
+
49
+
Optional: In order to use this project as an application on your desktop:
50
+
51
+
Step 1 :
52
+
```sh
53
+
pip install pyinstaller
54
+
```
55
+
Step 2 :
56
+
Make a Folder on your Desktop
57
+
and move the Calc.py file in the folder
58
+
59
+
Step 3 : Open any command line interface and enter that respective folder using the cd command
60
+
61
+
Step 4 : Execute the following command :
62
+
63
+
```sh
64
+
pyinstaller -F -w Calc.py
65
+
```
66
+
This will create a .exe file in that folder which can be used as an application
0 commit comments