pip3: command not found

前端 未结 6 1102
既然无缘
既然无缘 2021-02-02 11:14

I want to install Tensorflow following this instructions. https://www.tensorflow.org/versions/r0.12/get_started/os_setup#pip_installation.

But when I try this code on

6条回答
  •  日久生厌
    2021-02-02 12:01

    You would need to install pip3.

    On Linux, the command would be: sudo apt install python3-pip

    On Mac, using brew, first brew install python3
    Then brew postinstall python3

    Try calling pip3 -V to see if it worked.

提交回复
热议问题