You took too long to specify whether you were on windows or *nix.. so i took the linux route, who develops on windows anyways? :P Any who.. just convert this to batch file or powershell??? script...
Normally I stick this inside a install.sh
that does this:
#!/bin/bash
# Install virtualenv
virtualenv venv
# Install python dependencies
venv/bin/pip install -r requirements.txt
# Install chromedriver
cd venv/bin/
curl -s https://chromedriver.storage.googleapis.com/2.9/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
rm chromedriver_linux64.zip
This will setup the entire environment, your virtualenv need is taken care of and your chrome driver too.