I have an issue similar to #1295 however, the solution provided there did work for me.
import rasterio
from rasterio.io import MemoryFile
I get this error:
from rasterio.io import MemoryFile
ImportError: No module named io
I am working on a conda environment.
The pip install --pre rasterio did not change the result.
Any info is greatly appreciated.
MacOS Sierra version 10.12.6
python 2.7
pip show rasterio
Name: rasterio
Version: 0.36.0
@Jsdk2018 you cannot use pip to install rasterio in a conda environment. You must use conda install -c conda-forge/label/dev rasterio.
Most helpful comment
@Jsdk2018 you cannot use pip to install rasterio in a conda environment. You must use
conda install -c conda-forge/label/dev rasterio.