Skip to content

Instantly share code, notes, and snippets.

@heyman
Last active October 30, 2019 18:47
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save heyman/95ee0df663b2d4b9d6fb to your computer and use it in GitHub Desktop.
Save heyman/95ee0df663b2d4b9d6fb to your computer and use it in GitHub Desktop.
Installing Locust on Ubuntu 14.04
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
@florin-dita
Copy link

Hello,

From the error I see, when you are executing the virtualenv venv you do not have the permission to make a new folder. Please try sudo virtualenv venv and tell me if it's working.

Have a nice day!
Florin Dita

@rafalf
Copy link

rafalf commented Nov 7, 2016

Is virtualenv necessary?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment