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

Eric 2022-11-23 21:48:13 -08:00
parent fac10082dc
commit 2e1067fa89
1 changed files with 2 additions and 2 deletions

@ -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)