Christopher Mills
Christopher Mills

Reputation: 760

Error output in Google Colab tutorial when installing tfx

I'm running the following Google Colab, but when I run the following command, I get the below error:

!pip install -U tfx

--

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
multiprocess 0.70.11.1 requires dill>=0.3.3, but you have dill 0.3.1.1 which is incompatible.
jupyter-console 5.2.0 requires prompt-toolkit<2.0.0,>=1.0.0, but you have prompt-toolkit 3.0.18 which is incompatible.
google-colab 1.0.0 requires ipython~=5.5.0, but you have ipython 7.24.0 which is incompatible.
google-colab 1.0.0 requires requests~=2.23.0, but you have requests 2.25.1 which is incompatible.
datascience 0.10.6 requires folium==0.2.1, but you have folium 0.8.3 which is incompatible.

Upvotes: 1

Views: 3783

Answers (2)

user2791848
user2791848

Reputation: 11

Same for me, Received error when doing first !pip install of this code

Error was pip dependency resolver had wrong package. Ran the code block again and it ran successfully.

Upvotes: 1

Mohamed Ben Romdhane
Mohamed Ben Romdhane

Reputation: 1706

I did face similar problem with !pip install fiftyone but when I did repeat the syntax the problem gone.

Upvotes: 2

Related Questions