I am facing some issues regarding installing the imageAI library, I have tried too many times to install this.
Asked
Active
Viewed 1,381 times
-1
-
what python package are you trying to install – Whereismywall Jun 09 '22 at 06:28
-
1Welcome to Stack Overflow. Please post your full error as text and not as an image. – ewokx Jun 09 '22 at 06:30
-
@Whereismywall imageAI library.. – ewokx Jun 09 '22 at 06:30
-
please give output of pip list – Whereismywall Jun 09 '22 at 06:34
-
A incomplete screenshot is not an acceptable form to present an error here, we cannot even see the complete error which is outside of the screenshot. – Dr. Snoopy Jun 09 '22 at 22:54
2 Answers
0
I had a similar problem once related to having different versions of python accessing different compilers on my pc.
borrowing from the discussion here you can either uninstall python from your pc and then install the python 3.9.10 version from python.org and after installtion upgrade your pip (apparently some people had this problem using version 3.10) or verify if you have two versions conflicting to access pip by running:
python -m pip install package-name
and also
py -m pip install package-name
if there is a problem with version or conflict, one of these two lines will return which one is working and which one is having a problem

Ruben Esteche
- 26
- 6
0
I encountered the same error..
Solution:
install Imageai using whl
download imageai whl from here
and install using below command
pip install <whl file location>

Manish Choudhary
- 78
- 7