Getting the 'python error: externally-managed-environment' – How to Fix and Work Around It?

18 Replies, 1622 Views

Oh man, that python error: externally-managed-environment is such a buzzkill.

I’d suggest using `virtualenv` instead of venv. It’s a bit more flexible and works great for isolating environments.

```bash
pip install virtualenv
virtualenv myenv
source myenv/bin/activate
pip install <package>
```

Messages In This Thread



Users browsing this thread: 1 Guest(s)