kevinjqliu commented on issue #527:
URL: https://github.com/apache/iceberg-python/issues/527#issuecomment-2002552232

   oh interesting, this is because of a dependency issue. 
   
   The actual error shows up when you try to import that class
   ```
   from pyiceberg.io.fsspec import FsspecFileIO
   ```
   
   `fsspec` has a dependency on `botocore` and `botocore` is not installed with 
`!pip install -q pyiceberg[adlfs]`
   
https://github.com/apache/iceberg-python/blob/7f712fdad025a2110816ec217616de54631f1e3e/pyiceberg/io/fsspec.py#L33-L34
   
   To resolve this, install `botocore`
   ```
   !pip install botocore
   ```
   
   In the future, we'll get rid of this dependency issue. This is caught by 
`deptry` in #528. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to