Skip to content

Commit

Permalink
Update getting_started.rst (#3991)
Browse files Browse the repository at this point in the history
* remove in deveopment (#3941)

* Update getting_started.rst

Missing pip installation for virtualenv instructions

* Update getting_started.rst

---------

Co-authored-by: Viggo de Vries <viggo@highbiza.nl>
Co-authored-by: Voxin Muyli <lars@permanentmarkers.nl>
  • Loading branch information
3 people committed May 5, 2023
1 parent 151dc05 commit f355dfb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/source/internals/getting_started.rst
Expand Up @@ -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.
Expand Down

0 comments on commit f355dfb

Please sign in to comment.