-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 10 replies
-
Run |
Beta Was this translation helpful? Give feedback.
-
UPDATE: I did a full cleanup of Homebrew packages and reinstalled everything. I'm using python installed via Homebrew and every binary I install via pip gets placed at
@gromgit looks like this is the default behaviour |
Beta Was this translation helpful? Give feedback.
-
TLDR; Always use There's a lot of chatter to wade through here, but the short answer for people experiencing this problem is that if you are To clean up the mess made by using # Zsh
brew install pipx
for p in $(pip freeze | cut -d"=" -f1); do
pipx install "$p" --include-deps
pip uninstall -y "$p"
done |
Beta Was this translation helpful? Give feedback.
Which is exactly what I explained earlier:
To restate the above as clearly as possible, for all M1-based macOS systems like yours:
brew install <formula>
will download precompiled binary packages to install, and symlink everything in/opt/homebrew/Cellar/<formula>/<version>/bin
into/opt/homebrew/bin
. It will NEVER copy files into/…