Reputation: 43
I have installed locust using the pip command and when I move forward towards verifying the installation using this command: locust -v , it throws the following line back: Command Not Found
Secondly, when I installed Locust, some statements showed up on console as can be seen in the image below.
Upvotes: 4
Views: 3700
Reputation: 11426
The message in yellow is the problem. Add that directory to your PATH variable.
export PATH=/home/purelogics/.local/bin:$PATH
After updating path, locust -V
will work as expected.
Upvotes: 4