Hey! I had the same issue with python install module pyppeteer. It was driving me nuts until I realized I needed to install `asyncio` separately.
Try this:
```
pip install asyncio
pip install pyppeteer
```
Also, make sure your pip and setuptools are up to date. Sometimes that’s the culprit.
Hope this helps!
Try this:
```
pip install asyncio
pip install pyppeteer
```
Also, make sure your pip and setuptools are up to date. Sometimes that’s the culprit.
Hope this helps!
