Browse Source

Install Homebrew dependencies from a Brewfile

because: Installing all dependencies at once
speeds up the setup process.

this commit: Adds a Brewfile to the repository,
updates the README.md to include instructions and
adds the lockfile to the .gitignore file.
pull/354/head
David Fisher 12 months ago
parent
commit
c5e9fba962
  1. 5
      .gitignore
  2. 2
      Brewfile
  3. 4
      README.md

5
.gitignore vendored

@ -160,4 +160,7 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
# Homebrew
Brewfile.lock.json

2
Brewfile

@ -0,0 +1,2 @@
brew "pipx"
brew "ffmpeg"

4
README.md

@ -159,12 +159,12 @@ git clone https://github.com/danielmiessler/fabric.git
cd fabric
```
4. Install pipx:
4. Install pipx and ffmpeg via Homebrew:
macOS:
```bash
brew install pipx
brew bundle
```
Linux:

Loading…
Cancel
Save