Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

How to finish Ludwig instalation #18

#1

Can not install Ludwig due the error:

ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.3.0rc0, 2.3.0rc1)
ERROR: No matching distribution found for tensorflow==1.15

pip is updated (pip 20.1.1) but doesn't have tensorflow==1.15.3 anymore

  • replies 4
  • views 2.3K
  • likes 0
#2

Which version of python are you using?
It may be that some packages are not available with some versions of python.
Anyway this isn't really a problem with Ludwig, but with TensorFlow.
Let's try to figure out if it has to do with the specifics of your installation.

sergworld · Author

Python 3.8.3

I don't have TF installed in my environment. First I installed Python with pip,
next I run:
pip install https://github.com/uber/ludwig/archive/master.zip

or pip install ludwig

and getting error:

ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.3 (from ludwig) (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.3.0rc0, 2.3.0rc1)
ERROR: No matching distribution found for tensorflow==1.15.3 (from ludwig)

#4

Python 3.8 has only very recently been supported for TF2, TF1 still needs python 3.7.
The next release of Ludwig, due in a little bit, will support TF2 and thus python 3.8 but up until then, you have to use TF1, meaning you need to have python 3.6 or 3.7.

sergworld · Author
#5

thx a lot!