e.iluf
e.iluf

Reputation: 1659

how can I fix permission denied error while trying to install pyrebase

When I try to install pyrebase i get this error message.

PermissionError: [Errno 13] Permission denied: /Users/myname/anaconda/lib/python3.6/site-packages/google/api

what can I do?

Upvotes: 0

Views: 411

Answers (2)

Mr.Someone5352
Mr.Someone5352

Reputation: 130

You need root/Administrator privileges.

On linux use sudo before command and on Windows you can open a command prompt as administrator by right clicking it and selecting run as administrator.

Upvotes: 1

Arpit Solanki
Arpit Solanki

Reputation: 9931

Use sudo for linux or on windows run your command prompt as administrator

sudo pip install pyrebase

Upvotes: 2

Related Questions