Pro tip: The Mac error: externally-managed-environment is avoidable if you use Docker.
Sounds overkill, but if you’re doing dev work, it’s worth it.
```
docker run -it python:3.9 bash
pip install whatever
```
No system mess, no errors.
Otherwise, venvs are your friend.
Sounds overkill, but if you’re doing dev work, it’s worth it.
```
docker run -it python:3.9 bash
pip install whatever
```
No system mess, no errors.
Otherwise, venvs are your friend.
