python pip - This environment is externally managed
If you're getting the following error, when running pip install llama-stack as shown in the diagram below:-
Then you can proceed to add/append --break-system-packages to it and run "pip install llama-stack --break-system-packages" but this can be potentially harmful.
So it might be better to create your own python environment instead
python3 -m venv myllm
source myllm/bin/activate
pip install llama-stack
Comments