pip3: command not found

前端 未结 6 1099
既然无缘
既然无缘 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:04

    I had this issue and I fixed it using the following steps You need to completely uninstall python3-p using:

    sudo apt-get --purge autoremove python3-pip
    

    Then resintall the package with:

     sudo apt install python3-pip
    

    To confirm that everything works, run:

     pip3 -V
    

    After this you can now use pip3 to manage any python package of your interest. Eg

    pip3 install NumPy
    

提交回复
热议问题