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

18 Replies, 1601 Views

Yo! I had the same issue last week. That python error: externally-managed-environment is a pain, but there’s a fix.

Try using `conda` if you’re okay with switching to a different package manager. It’s great for managing environments and avoids these conflicts.

Install conda, then:
```bash
conda create -n myenv python=3.x
conda activate myenv
pip install <package>
```

Messages In This Thread



Users browsing this thread: 1 Guest(s)