4

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.

enter image description here

srk
  • 4,857
  • 12
  • 65
  • 109

1 Answers1

3

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.

srk
  • 4,857
  • 12
  • 65
  • 109
Cyberwiz
  • 11,027
  • 3
  • 20
  • 40