From d8995a151523356cd27795bff52e29359b786a9f Mon Sep 17 00:00:00 2001 From: NAndras95 Date: Thu, 2 Dec 2021 15:57:02 +0100 Subject: [PATCH 1/2] without -r can't install requirements with pip install -r requirements.txt i have this error ERROR: Could not find a version that satisfies the requirement requirements.txt (from versions: none) ERROR: No matching distribution found for requirements.txt to solve this I added the -r option -r, --requirement Install from the given requirements file. This option can be used multiple times. --- projects/Todo_app/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Todo_app/Readme.md b/projects/Todo_app/Readme.md index 386f9a571..f5dbb4948 100644 --- a/projects/Todo_app/Readme.md +++ b/projects/Todo_app/Readme.md @@ -7,6 +7,6 @@ # To run app - Create virtual Environment - Install requirements -`pip install requirements.txt` +`pip install -r requirements.txt` - run app `py app.py` From 5477f39c4d3decadccf33f2e52eed54677c16e81 Mon Sep 17 00:00:00 2001 From: NAndras95 Date: Thu, 2 Dec 2021 16:22:15 +0100 Subject: [PATCH 2/2] Create README.md --- projects/AudioBook/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 projects/AudioBook/README.md diff --git a/projects/AudioBook/README.md b/projects/AudioBook/README.md new file mode 100644 index 000000000..2af610457 --- /dev/null +++ b/projects/AudioBook/README.md @@ -0,0 +1,14 @@ +# AudioBook + +### Description +This application will make an mp3 based on you pdf file. + +### Instal the requirements +``` +pip install gtts +pip install PyPDF2 +``` +### Dun the application +``` +python Audio-book.py +```