Could not find a version that satisfies the requirement tensorflow

前端 未结 18 1291
深忆病人
深忆病人 2020-11-28 04:11

I installed the latest version of Python (3.6.4 64-bit) and the latest version of PyCharm (2017.3.3 64-bit). Then I installed some modules in PyCha

18条回答
  •  北海茫月
    2020-11-28 04:36

    Tensorflow 2.2.0 supports Python3.8

    First, make sure to install Python 3.8 64bit. For some reason, the official site defaults to 32bit. Verify this using python -VV (two capital V, not W). Then continue as usual:

    python -m pip install --upgrade pip
    python -m pip install wheel  # not necessary
    python -m pip install tensorflow
    

    As usual, make sure you have CUDA 10.1 and CuDNN installed.

提交回复
热议问题