This repository contains an Investment Calculator application. The application helps users calculate the future value of their investments based on initial investment amount, interest rate, and investment duration.
- Calculate future investment value
- Support for different interest compounding frequencies
- User-friendly interface
-
Clone the repository:
git clone https://github.com/yourusername/investment_calculator.git
-
Navigate to the project directory:
cd investment_calculator
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- On Windows:
.\venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate
- On Windows:
-
Install the required dependencies:
pip install -r requirements.txt
This project uses Jupyter Notebook for interactive calculations and visualizations. To start the Jupyter Notebook:
- Ensure you have Jupyter installed in your virtual environment:
pip install jupyter
- Launch Jupyter Notebook:
jupyter notebook
- Open the
investment_calculator.ipynb
notebook and follow the instructions to perform your calculations.