Juanjo
Juanjo

Reputation: 81

Run rq command on ubuntu

I am trying to run the command "rq worker" on ubuntu to run a redis queue worker process for a web application

I already installed rq using pip3 install rq. However when I try to run the command on the Terminal it just tells me rq: command not found.

Does anybody know how to install the rq command on ubuntu 17.10??

thanks in advance

Upvotes: 3

Views: 2893

Answers (1)

Juanjo
Juanjo

Reputation: 81

Fixed, it seems it was because I installed rq using pip without sudo.

I want this to remain documented for anybody else that is having a hard time:

If you install something using pip on linux but you don't use sudo you won't be able to use it on bash.

The correct way to install it and be able to use it on bash is

pip install rq

This applies to all of pip packages

Peace out

Upvotes: 3

Related Questions