Home > Enterprise >  install tensorflow-decision-forests in windows
install tensorflow-decision-forests in windows

Time:06-29

I have to install tensorflow-decision-forests in windows. I tried:

pip install tensorflow-decision-forests
pip3 install tensorflow-decision-forests
pip3 install tensorflow_decision_forests --upgrade

I get:

ERROR: Could not find a version that satisfies the requirement tensorflow-decision-forests (from versions: none)
ERROR: No matching distribution found for tensorflow-decision-forests

I have (pip show tensorflow):

Name: tensorflow
Version: 2.9.1
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: [email protected]
License: Apache 2.0

AFIK this is the latest version amy ideas?

CodePudding user response:

tensorflow-decision-forests 0.2.6 provides binary wheels only for Linux and no source code. So pip cannot install it on non-Linux platforms.

There're instructions on how to compile it on Linux and Mac OS X but that's all. Perhaps it's not possible to compile it anywhere else.

  • Related