HDF4 not recognized as a supported file format
leonidas_liakos@...
I have install rasterio with pip3 install rasterio --no-binary rasterio
When I'm trying to read an HDF4 MODIS file I get an error: Matplotlib created a temporary config/cache directory at /tmp/matplotlib-m5kstvas because the default path (/home/kokkytos/.config/matplotlib) is not a writable directory; it is highly recommended to set the MPLCONFIGDIR environment variable to a writable directory, in particular to speed up the import of Matplotlib and to better support multiprocessing. During handling of the above exception, another exception occurred: Traceback (most recent call last): |
|
Sean Gillies
Hi, On Mon, Nov 2, 2020 at 9:16 AM leonidas_liakos via groups.io <leonidas_liakos=yahoo.gr@groups.io> wrote: I have install rasterio with pip3 install rasterio --no-binary rasterio In https://github.com/mapbox/rasterio/issues/2026 you reported that you'd previously installed a wheel from PyPI. In that case, I think you need to add an option when reinstalling: pip3 install rasterio --force-reinstall --no-binary rasterio Sean Gillies |
|
leonidas_liakos@...
Thank you!
pip3 install rasterio --force-reinstall --no-binary rasterio did the job. |
|