You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use bottle :unneeded to skip bottling for Python venv
The formula contains a Python virtual environment with pre-built C extensions
(orjson, etc.) that cannot be reliably relocated by Homebrew's bottling process.
Attempts to force-compile these packages from source fail because:
- orjson requires Rust (maturin build tool)
- typos requires Rust
- Setting LDFLAGS only helps packages built from source, not wheels
Solution: Use 'bottle :unneeded' to tell Homebrew not to create bottles.
Users will install from source, which is appropriate for scientific computing
software like MFC. The installation process remains the same and works correctly.
0 commit comments