nicknochnack / TFODCourse

958 stars 926 forks source link

Install Tensorflow object detection took a long time due to pip #31

Open get93 opened 2 years ago

get93 commented 2 years ago

It happens recently as I want to install the tensorflow object detection on google colab. The issue is whilst installing the pip has to search for multiple versions of chardet, idna and rsa which took a long runtime. This has not happened before when I do the tutorial so I was wondering is there such update or is there anything to resolve this long runtime. Thank you

melaniihariono commented 2 years ago

Try to upgrade the pip:

!pip install --upgrade pip

hrncacz commented 2 years ago

@get93 I had the same issue. What helped me was to add line !pip install --upgrade pip==20.3.4 and add --use-deprecated=legacy-resolver

image

Shivam7Sharma commented 2 years ago

!pip install --upgrade pip

Thanks! That solved the issue. Do you mind me asking how did you know this will solve the problem?