You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we run pip install ml-metadata with versions 3.11 or newer it doesn't install ml-metadata==1.14.0. We get 0.13.1.dev0 installed. And if we force 1.14.0 with pip install ml-metadata==1.14.0, it can't be found.
$ python --version
Python 3.11.7
$ pip install ml-metadata==1.14.0
ERROR: Could not find a version that satisfies the requirement ml-metadata==1.14.0 (from versions: 0.12.0.dev0, 0.13.0.dev0, 0.13.1.dev0)
ERROR: No matching distribution found for ml-metadata==1.14.0
The text was updated successfully, but these errors were encountered:
I tried replicating your env by installing python 3.10.13 and running the pip install ml-metadata==1.14.0 but still got the '(from versions: 0.12.0.dev0, 0.13.0.dev0, 0.13.1.dev0)'.
This is causing dependency issues in tfx. Has anyone found a solve for this?
versions 3.11 or newer it doesn't install ml-metadata==1.14.0.
If that helps, as we can see on this page: https://pypi.org/project/ml-metadata/1.14.0/#files since it's only CPython >=3.8 up to CPython <=3.10, it won't be possible to find a suitable wheel when you use Python 3.11. Or at least this sound the reason for your error.
I tried replicating your env by installing python 3.10.13 and running the pip install ml-metadata==1.14.0 but still got the '(from versions: 0.12.0.dev0, 0.13.0.dev0, 0.13.1.dev0)'.
This is causing dependency issues in tfx. Has anyone found a solve for this?
This sound like very much like the same problem I encountered when using ARM / M-chip based Mac; you can find some additional information in this thread: #143 (comment)
provided that indeed:
When we run
pip install ml-metadata
with versions 3.11 or newer it doesn't installml-metadata==1.14.0
. We get0.13.1.dev0
installed. And if we force 1.14.0 withpip install ml-metadata==1.14.0
, it can't be found.With Python 3.10
With Python 3.11
$ python --version Python 3.11.7 $ pip install ml-metadata==1.14.0 ERROR: Could not find a version that satisfies the requirement ml-metadata==1.14.0 (from versions: 0.12.0.dev0, 0.13.0.dev0, 0.13.1.dev0) ERROR: No matching distribution found for ml-metadata==1.14.0
The text was updated successfully, but these errors were encountered: