From af9474e600427a6123abb2e864b81730a5537364 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 18 Feb 2024 04:31:57 -0800 Subject: [PATCH] Updated Install (markdown) --- Install.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Install.md b/Install.md index 277e7a8..d61875c 100644 --- a/Install.md +++ b/Install.md @@ -202,6 +202,15 @@ python3 -m pip install --upgrade --ignore-installed archivebox[ldap,sonic] # 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`. +```bash +echo $PATH # show the directories your system is searching for binaries +which -a archivebox # show all installed archivebox binaries available +which archivebox # show which archivebox binary is being called + +archivebox version # show all the archivebox & dependency version info +``` +(ensure the version shown is the most recent available from [Releases](https://github.com/ArchiveBox/ArchiveBox/releases))