A general app that takes some user input, generates a CSV and stores the data in it
- Python 3.x
- pip
- Clone the repository:
git clone https://github.com/Aishee06/General_App.git - Navigate into the directory:
cd General_App - Create a virtual environment:
or
python3 -m venv myenvpython -m venv myenv - Activate the virtual environment:
- On Windows:
.\myenv\Scripts\activate - On Unix or MacOS:
source myenv/bin/activate
- On Windows:
- Install the required packages:
-
pip install -r requirements.txt
- Run the application:
python app.py
When you're done, you can deactivate the virtual environment:
deactivate