Trying to install meilisearch gives access denied error at

433 Views Asked by At

When installing meilisearch using pip, using the following command:

pip3 install meilisearch

gives the following error:

bash: /c/Users/NASA/AppData/Local/Programs/Python/Python39/Scripts/pip3:  Permission denied

How can it be solved?

1

There are 1 best solutions below

1
On

This is a permissions-error, and is common if you are not logged in from an account with admin-privileges.
One possible way is to install for your account only, by using

pip install meilisearch --account

Another possible workaround is to use a Virtual-Environment.