anacondacondatensorflow-transform

How to install tensorflow-transform on anaconda?


We can install tensorflow-transform using pip but how do I install it using Conda?

I have tried using conda install -c anaconda tensorflow-transform and all its variants without result.


Solution

  • A search of Anaconda Cloud shows that tensorflow-transform is not available through any channels on any platform. Moreover, the recommended way to install the package is to use PyPI. However, one can still install the package into a specific Conda env by first activating the env:

    conda activate your_env
    pip install tensorflow-transform