Yo, I feel your pain. I ran into similar errors when trying to python install module pyppeteer. What worked for me was installing it in a virtual environment.
Try this:
```
python -m venv myenv
source myenv/bin/activate
pip install pyppeteer
```
Also, make sure you have Chromium installed. Pyppeteer needs it to run.
Hope this helps!
Try this:
```
python -m venv myenv
source myenv/bin/activate
pip install pyppeteer
```
Also, make sure you have Chromium installed. Pyppeteer needs it to run.
Hope this helps!
