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:44:54 -08:00
parent 22603809f8
commit 340694ed35

@@ -126,13 +126,12 @@ See our [Dependencies](https://github.com/ArchiveBox/ArchiveBox#dependencies) do
Make sure you have [Homebrew](https://brew.sh/) installed first. Make sure you have [Homebrew](https://brew.sh/) installed first.
```bash ```bash
# Install ArchiveBox's dependencies manually brew tap archivebox/archivebox
brew tap homebrew-ffmpeg/ffmpeg brew install archivebox
brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-fdk-aac # OR Install ArchiveBox's dependencies manually (instead of using the all-in-one brew package)
brew install python3 node git wget curl yt-dlp ripgrep # brew tap homebrew-ffmpeg/ffmpeg
# OR install using the official ArchiveBox brew package # brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-fdk-aac
# brew tap archivebox/archivebox # brew install python3 node git wget curl yt-dlp ripgrep
# brew install archivebox
# Skip this if you already have Google Chrome/Chromium installed in /Applications/ # Skip this if you already have Google Chrome/Chromium installed in /Applications/
pip3 install --upgrade playwright pip3 install --upgrade playwright
@@ -204,11 +203,16 @@ python3 -m pip install --upgrade --ignore-installed archivebox[ldap,sonic]
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`.
```bash ```bash
brew info archivebox # show info about the brew-installed version of archivebox
pip show archivebox # show info about the pip-installed version of archivebox
echo $PATH # show the directories your system is searching for binaries echo $PATH # show the directories your system is searching for binaries
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
```
archivebox version # show all the archivebox & dependency version info **⭐️ Show the full archivebox version info + info about all installed dependencies:**
```bash
archivebox version # shows lots of useful info about installed dependencies and more
``` ```
(ensure the version shown is the most recent available from [Releases](https://github.com/ArchiveBox/ArchiveBox/releases)) (ensure the version shown is the most recent available from [Releases](https://github.com/ArchiveBox/ArchiveBox/releases))