Skip to content

Instantly share code, notes, and snippets.

@heyman
Last active October 30, 2019 18:47
Show Gist options
  • Select an option

  • Save heyman/95ee0df663b2d4b9d6fb to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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
Copy Markdown

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