Skip to content

Commit a50a7a0

Browse files
authored
Update README.md
1 parent 3ac4183 commit a50a7a0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,26 @@
1111

1212
A beginner's tutorial to launching a simple Django web app (part 1 of a series). This repository is the source code for the tutorial found here: https://hackersandslackers.com/getting-started-django/
1313

14-
## Getting Started
14+
## Installation
1515

16-
Installation is recommended with [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/):
16+
**Installation via `requirements.txt`**:
1717

1818
```shell
1919
$ git clone https://github.com/hackersandslackers/django-intro-tutorial.git
2020
$ cd django-intro-tutorial
21-
$ pipenv shell
22-
$ pipenv update
21+
$ python3 -m venv myenv
22+
$ source myenv/bin/activate
23+
$ pip3 install -r requirements.txt
2324
$ python3 manage.py runserver
2425
```
2526

26-
Alternatively, try installing via `setup.py`:
27+
**Installation via [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/)**:
2728

2829
```shell
2930
$ git clone https://github.com/hackersandslackers/django-intro-tutorial.git
3031
$ cd django-intro-tutorial
31-
$ python3 setup.py install
32+
$ pipenv shell
33+
$ pipenv update
3234
$ python3 manage.py runserver
3335
```
3436

0 commit comments

Comments
 (0)