Skip to content

Commit 04efb0c

Browse files
committed
Upgrade README after upgrading to Django 2 and Python 3
1 parent 74e34df commit 04efb0c

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,17 @@ fileupload/models.py as commented in the file.
3232
Installation
3333
============
3434

35-
* pip install -r requirements.txt (will install django and pillow)
36-
* python manage.py migrate
37-
* python manage.py runserver
38-
* go to localhost:8000/upload/new/ and upload some files
35+
I recommend to install this within a virtualenv.
36+
37+
```sh
38+
virtualenv -p python3 venv
39+
source venv/bin/activate
40+
pip install -r requirements.txt
41+
./manage.py migrate
42+
./manage.py runserver
43+
```
44+
45+
And then go to localhost:8000 and try to upload some files.
3946

4047
License
4148
=======

0 commit comments

Comments
 (0)