1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-17 20:01:44 +02:00

Updated Install (markdown)

Nick Sweeting
2024-02-18 17:48:42 -08:00
parent 340694ed35
commit 66c5d09dea

@@ -193,12 +193,11 @@ See the [Quickstart](https://github.com/ArchiveBox/ArchiveBox#-package-manager-s
Do this even if you've already installed `archivebox` with `apt`/`brew`/etc., as the `pip` version is often newer. Do this even if you've already installed `archivebox` with `apt`/`brew`/etc., as the `pip` version is often newer.
```bash ```bash
# install latest version of archivebox from PyPI # get the latest version of archivebox from PyPI (optional, takes precedence over apt/brew-installed archivebox)
python3 -m pip install --upgrade --ignore-installed archivebox pip install --upgrade --ignore-installed archivebox[ldap,sonic]
# OR install with all the extras (LDAP-support, Sonic full-text search, etc.) # if you see errors about ldap, install the C++ build tools + ldap headers and retry (only needed on some OSs)
python3 -m pip install --upgrade --ignore-installed archivebox[ldap,sonic] # apt install build-essensial python3-ldap
# apt install build-essensial python3-ldap (install C++ toolchain if any errors during build)
``` ```
Then make sure the `pip`-installed version of `archivebox` is available in your `$PATH`. Then make sure the `pip`-installed version of `archivebox` is available in your `$PATH`.
@@ -209,7 +208,6 @@ echo $PATH # show the directories your system is searching for bin
which -a archivebox # show all installed archivebox binaries available which -a archivebox # show all installed archivebox binaries available
which archivebox # show which archivebox binary is being called which archivebox # show which archivebox binary is being called
``` ```
**⭐️ Show the full archivebox version info + info about all installed dependencies:** **⭐️ Show the full archivebox version info + info about all installed dependencies:**
```bash ```bash
archivebox version # shows lots of useful info about installed dependencies and more archivebox version # shows lots of useful info about installed dependencies and more