From 2e1067fa8937bf782f2a7898ce8a2e9260040126 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 23 Nov 2022 21:48:13 -0800 Subject: [PATCH] Went through the install process on ubuntu 22.04, I needed to swap these steps, as there was no requirements.txt file after creating a new virtualenv in a new directory --- Manual-Installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Manual-Installation.md b/Manual-Installation.md index 71c6785..98d918c 100644 --- a/Manual-Installation.md +++ b/Manual-Installation.md @@ -11,9 +11,9 @@ If you want to manually install Calibre-Web (“from source”), follow the proc 3. Create virtual environment for calibre web in folder venv - `python3 -m venv venv` -4. Install dependencies by running `./venv/bin/python3 -m pip install -r requirements.txt` +4. Download and extract Calibre-Web into the current folder (in this example /opt/calibre-web) from the releases page on Github -5. Download and extract Calibre-Web into the current folder (in this example /opt/calibre-web) from the releases page on Github +5. Install dependencies by running `./venv/bin/python3 -m pip install -r requirements.txt` 6. Execute the command: `./venv/bin/python3 cps.py` (or `nohup ./venv/bin/python3 cps.py` - recommended if you want to exit the terminal window)