Installing imageio with v3 module in python3

88 views Asked by At

I have been trying to import imageio.v3 module in Python3. In order to install the library, I followed two options:

python3 -m pip install imageio

conda install -c conda-forge imageio

I could see it was installed imageio-2.6.1. When importing the v3 module from import imageio.v3, I get the following error:

"ModuleNotFoundError: No module named 'imageio.v3'". Basically, it seems the v3 module is not present in my current imageio version.

How can install it?

1

There are 1 answers

0
Marcos Alex On

The issue was solved by updating conda and anaconda:

conda update -n base conda

conda update -n base anaconda

Then I reinstalled the library:

conda install -c conda-forge imageio