Steps to reproduce the behavior:
During the installation of AutoKeras I ge the following error message -
Found existing installation: imageio 2.2.0
Cannot uninstall 'imageio'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
I am expecting successful installation of autokeras library.
Include the details about the versions of:
Maybe you can try to create a virtual enviorment or use anaconda to get a pure enviorment.
I tried the same command:
pip install autokeras
I am getting this error:
Cannot uninstall 'imageio'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
(using an Anaconda-Jupyter notebook on OS: Ubuntu)
Try to install like this:
pip install autokeras --ignore-installed
^Above installed autokeras but reinstalled the CPU version of Tensorflow.
(If using CUD9.2) I had to uninstall tensorflow and reinstall version 1.12
If I do that I run into the
ERROR: Could not find a version that satisfies the requirement torch==1.0.1 (from autokeras==0.3.7) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.0.1 (from autokeras==0.3.7)
Problem. Any better ideas? ^^
Well if anyone runs over this issue:
conda uninstall imageio
so easy. took me 30 minutes to figure that out 馃懐鈥嶁檪
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
Try to install like this:
pip install autokeras --ignore-installed