From f355dfbad460acf3285723de4840784c1b07f1b2 Mon Sep 17 00:00:00 2001 From: Caio Jhonny Date: Fri, 5 May 2023 15:46:37 +0200 Subject: [PATCH] Update getting_started.rst (#3991) * remove in deveopment (#3941) * Update getting_started.rst Missing pip installation for virtualenv instructions * Update getting_started.rst --------- Co-authored-by: Viggo de Vries Co-authored-by: Voxin Muyli --- docs/source/internals/getting_started.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/internals/getting_started.rst b/docs/source/internals/getting_started.rst index be7c4d10234..cb401284e7e 100644 --- a/docs/source/internals/getting_started.rst +++ b/docs/source/internals/getting_started.rst @@ -27,11 +27,12 @@ project: $ pip install django-oscar[sorl-thumbnail] $ django-admin startproject frobshop -If you do not have :command:`mkvirtualenv`, then replace that line with:: +If you do not have :command:`mkvirtualenv`, you can use instead:: - $ virtualenv oscar + $ python3 -m venv oscar $ . ./oscar/bin/activate - (oscar) $ + (oscar) $ pip install django-oscar[sorl-thumbnail] + (oscar) $ django-admin startproject frobshop This will create a folder ``frobshop`` for your project. It is highly recommended to install Oscar in a virtualenv.