Search code examples
tensorflowdeep-learningkeraspermission-denied

Getting permission denied error while installing tensorflow and keras


After following the steps from my previously asked question Can I implement deep learning models in my laptop with intel hd graphics I am getting a permission denied error while installing tensorflow

error13

What can I do to install tensorflow and keras without getting this error?


Solution

  • pip3 is trying to access /usr/bin/ for which you need superuser rights. Try

    sudo pip3 install --upgrade ...