Last active
October 30, 2019 18:47
-
-
Save heyman/95ee0df663b2d4b9d6fb to your computer and use it in GitHub Desktop.
Installing Locust on Ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install -y python-pip | |
sudo apt-get install -y python-dev | |
sudo apt-get install -y libzmq-dev | |
sudo pip install virtualenv | |
virtualenv venv | |
source venv/bin/activate | |
pip install locustio | |
pip install pyzmq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is virtualenv necessary?