We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example fails with:
ModuleNotFoundError: No module named 'pytorch_lightning.utilities.cloud_io
I did some grepping around and spotted that pytorch_lightning now imports that from a separate package. Example:
from lightning_fabric.utilities.cloud_io import get_filesystem
I'm attempting to use Python 3.11 on Ubuntu, in a Python virtual environment so as to allow use of pip.
pip
Hope this is helpful! Thanks for open-sourcing this.
The text was updated successfully, but these errors were encountered:
I was able to fix it by changing the relevant line to:
from lightning_fabric.utilities.cloud_io import _load as pl_load
Right now I'm hacking directly in site-packages, yes very messy, I'll try to send a PR but it's a one-liner.
Sorry, something went wrong.
No branches or pull requests
The example fails with:
I did some grepping around and spotted that pytorch_lightning now imports that from a separate package. Example:
I'm attempting to use Python 3.11 on Ubuntu, in a Python virtual environment so as to allow use of
pip
.Hope this is helpful! Thanks for open-sourcing this.
The text was updated successfully, but these errors were encountered: