Virtualenv is def the way to go for beautifulsoup install. Here’s how I do it:
```
python -m venv myenv
source myenv/bin/activate # or myenv\Scripts\activate on Windows
pip install beautifulsoup4
```
No more dependency clashes!
```
python -m venv myenv
source myenv/bin/activate # or myenv\Scripts\activate on Windows
pip install beautifulsoup4
```
No more dependency clashes!
