From fad1aa75e9e5afc086b70206e8415594bb773cc2 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Fri, 22 Jun 2018 16:23:44 +0200 Subject: [PATCH] Add virtualenv creation instructions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46eff75..e624b96 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,11 @@ git clone git://git.blender.org/blender-cloud.git ### Initial setup and configuration -Switch to the (previously created) virtualenv for the project and install the requirements: +Create a virtualenv for the project and install the requirements: ``` -cd /home/guest/Developer/blender-cloud -workon blender-cloud +cd blender-cloud +mkvirtualenv blender-cloud -p python3.6 pip install -r requirements-dev.txt ```