Install TensorFlow addons

后端 未结 2 1741
抹茶落季
抹茶落季 2020-12-22 09:17

I have a venv with the following details:

  • python 3.6
  • TensorFlow 2.0.0

I tried to install tens

相关标签:
2条回答
  • 2020-12-22 09:26

    I came across this problem two times and each time I had to solve the problem with a different solution.

    1. Solution:

    • Upgrade pip/pip3 by using the following command. python3 -m pip install --upgrade pip

    • Select appropriate version of the tensorflow-addons using the
      following link
      https://github.com/tensorflow/addons#python-op-compatibility-matrix

    • Install using the following command

         pip install tensorflow-addons==version
      

    2. Solution:

    • go to https://pypi.org/project/tensorflow-addons/#history

    • click on appropriate version

    • click on "Download files" on menu to the left

    • click on a .whl file that matches your system requirements/specifications

    • go to the directory where you download the .whl file and run the following

      pip install tensorflow_addons-name.whl

    0 讨论(0)
  • 2020-12-22 09:38

    I think the answer to your question may be provided here: https://github.com/tensorflow/addons/issues/222

    0 讨论(0)
提交回复
热议问题