-
Install Git from the official website: https://git-scm.com/downloads
-
Open a terminal.
-
Clone the repository to your local directory.
git clone https://github.com/akkalame/file_manipulation.git
- Navigate to the project directory.
cd file_manipulation
- Create a Python virtual environment.
python -m venv env
- Activate the virtual environment.
Windows:
env\Scripts\activate
Linux and Mac:
source env/bin/activate
- Install the requirements from the
requirements.txt
file.
pip install -r requirements.txt
- Run the program.
flask run
If you get an error that the port is already in use when you run flask run
, you can change it using the --port
flag. For example:
flask run --port 8000
Open your web browser and navigate to the address http://localhost:8000
.
If you need help with this program, you can create an issue in the following repository: