HI,
I’m using an Anaconda’s tutorial in Jupyter, but when I run the command:
from js import fetch
import json5
res = await fetch(‘https://jupyterlite.anaconda.cloud/b0df9a1c-3954-4c78-96e6-07ab473bea1a/files/bikeshare.csv’)
csv_data = await res.text()
I get the following message:
ModuleNotFoundError: No module named 'js'
How to solve?
Thanks