🐛 Bug
I tried installing papermill using both conda-forge and pip. However, it is not working on Linux system. Cannot import the package as shown below.
`
import papermill
Traceback (most recent call last):
File "", line 1, in
File "/home/bny/miniconda3/lib/python3.9/site-packages/papermill/init.py", line 4, in
from .execute import execute_notebook
File "/home/bny/miniconda3/lib/python3.9/site-packages/papermill/execute.py", line 9, in
from .iorw import get_pretty_path, local_file_io_cwd, load_notebook_node, write_ipynb
File "/home/bny/miniconda3/lib/python3.9/site-packages/papermill/iorw.py", line 46, in
from gcsfs import GCSFileSystem
File "/home/bny/miniconda3/lib/python3.9/site-packages/gcsfs/init.py", line 5, in
from .core import GCSFileSystem
File "/home/bny/miniconda3/lib/python3.9/site-packages/gcsfs/core.py", line 1095, in
class GCSFile(fsspec.spec.AbstractBufferedFile):
AttributeError: 'EntryPoint' object has no attribute 'AbstractBufferedFile'
`
Ahh you have the latest version of gcfs. We need to make a new release of papermill with https://github.com/nteract/papermill/pull/624 included to get that fix out. In the meantime either try downgrading gcsfs or install the current main branch of papermill until I can get a release going.