Hey! I’ve been there too. The python error: externally-managed-environment is super frustrating.
Instead of messing with system packages, I’d recommend using `pyenv`. It lets you manage multiple Python versions and environments easily.
Here’s a quick setup:
```bash
curl https://pyenv.run | bash
pyenv install 3.x.x
pyenv global 3.x.x
```
Then you can use pip without issues.
Instead of messing with system packages, I’d recommend using `pyenv`. It lets you manage multiple Python versions and environments easily.
Here’s a quick setup:
```bash
curl https://pyenv.run | bash
pyenv install 3.x.x
pyenv global 3.x.x
```
Then you can use pip without issues.
