Theron
Theron

Reputation: 697

How to Install tensorflow addons via conda

I cannot find it out. Does Conda support it?

conda install tensorflow-addons

cannot find out the package

Upvotes: 17

Views: 21839

Answers (4)

Richard X
Richard X

Reputation: 1134

You can find information related to TensorFlow Addons here. Currently, it looks like Conda does not support Tensorflow Addons yet. You will have to wait for it to be implemented in the future. Otherwise, you can use pip install tensorflow-addons.

Upvotes: 12

kenji
kenji

Reputation: 51

conda install -c esri tensorflow-addons

or

conda install -c esri/label/prerelease tensorflow-addons

https://anaconda.org/esri/tensorflow-addons

Upvotes: 5

SUVAIN G
SUVAIN G

Reputation: 169

You can use pip in your Anaconda environment to install tensorflow-addons.

pip install tensorflow-addons

then to use:

import tensorflow_addons as tfa

I was able to successfully import it and use InstanceNormalization

Upvotes: 8

Anush
Anush

Reputation: 89

To install the latest version of addons, run the following:

pip install tensorflow-addons

To use addons:

import tensorflow as tf
import tensorflow_addons as tfa

For more information please refer the below link

Tensorflow-addons

Upvotes: 1

Related Questions