pyyaml has been disabled because it does not meet homebrew/core's requirements for Python library formulae! #5707
Replies: 5 comments 1 reply
-
Yes. You should use |
Beta Was this translation helpful? Give feedback.
-
I'm sorry, I'm a complete python newbie, pyyaml was installed using the OpenRoad DependencyInstaller.sh Using pip3 install gives me "error: externally-managed-environment".
|
Beta Was this translation helpful? Give feedback.
-
pip3 -V |
Beta Was this translation helpful? Give feedback.
-
It seems that all the sudden, just using brew is not enough any more. |
Beta Was this translation helpful? Give feedback.
-
@stefanottili I ran into this as well. For beginners see my complete example below to get a head start.
cd ~/siem-k8s-cluster/kubernetes/siem/apps/security/tetragon/app/tmp
python3 -m venv api2jsonschema
source api2jsonschema/bin/activate
pip3 install PyYAML
Collecting PyYAML
Using cached PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)
Using cached PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759 kB)
Installing collected packages: PyYAML
Successfully installed PyYAML-6.0.2
[notice] A new release of pip is available: 24.2 -> 24.3.1
[notice] To update, run: pip install --upgrade pip
pip3 install --upgrade pip
Requirement already satisfied: pip in ./api2jsonschema/lib/python3.13/site-packages (24.2)
Collecting pip
Using cached pip-24.3.1-py3-none-any.whl.metadata (3.7 kB)
Using cached pip-24.3.1-py3-none-any.whl (1.8 MB)
Installing collected packages: pip
Attempting uninstall: pip
Found existing installation: pip 24.2
Uninstalling pip-24.2:
Successfully uninstalled pip-24.2
Successfully installed pip-24.3.1
deactivate And visually what happens, when executing |
Beta Was this translation helpful? Give feedback.
-
Output of
brew config
Output of
brew doctor
Description of issue
https://theopenroadproject.org uses yaml and this worked til recently.
How do I get this to work again ?
Beta Was this translation helpful? Give feedback.
All reactions