01110000_01110000
01110000_01110000

Reputation: 103

pip ERROR: Invalid requirement: '==' in colab

I'm trying to install a specific version of the albumentations library by doing:

!pip install albumentations == 0.4.6

and I get this really weird error:

ERROR: Invalid requirement: '=='

How can I fix this?

Upvotes: 2

Views: 7416

Answers (1)

Synthaze
Synthaze

Reputation: 6090

pip install albumentations==0.4.6

Without space :)

Upvotes: 5

Related Questions