I'm trying to use grass library in my Jupyter Notebook. When I install the library with this code !pip install grass-session it gets successfully installed. But when I try to import it with import grass.script as gscript, I get an error:
ModuleNotFoundError Traceback (most recent call last)
Input In [3], in <cell line: 1>()
----> 1 import grass.script as gscript
ModuleNotFoundError: No module named 'grass.script'
How can I fix this?