I am trying my hand at distributed load testing using Locust. My Mac Sonoma 14.0 is facing issues while installing Locust.
Details:
- I already have Python 3.8.6 installed in my system
- I tried installing Locust a year back, it was version 2.14, which ran stably, until it started running into issues, at which point I've uninstalled Locust from Pip and reinstalled it from same platform this time using the current stable version.
pip3 install locust==2.18.0
pip show locust response also doesn't seem to display all the required result as it should've. Is it because of an underlying package version conflict or could it be a different issue altogether?

It's hard to say exactly what is wrong, most probably it's a matter of your operating system paths.
In general it's recommended to use virtual environments instead of installing packages globally and when you activate the virtual environment and install locust via pip it should be available
There is also a Homebrew formula so you should be able to get it as
More information: What Is Locust Load Testing?