Hey! I ran into the same python error: externally-managed-environment recently. Itβs super annoying, right? π
What worked for me was using a virtual environment. Just run:
```bash
python -m venv myenv
source myenv/bin/activate
```
Then install your package with pip. This way, you avoid messing with the system packages.
If youβre not familiar with venv, check out the official Python docs. They explain it really well!
What worked for me was using a virtual environment. Just run:
```bash
python -m venv myenv
source myenv/bin/activate
```
Then install your package with pip. This way, you avoid messing with the system packages.
If youβre not familiar with venv, check out the official Python docs. They explain it really well!
