summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tutorial_2_installation/slides.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/tutorial_2_installation/slides.md b/tutorial_2_installation/slides.md
new file mode 100644
index 0000000..d169256
--- /dev/null
+++ b/tutorial_2_installation/slides.md
@@ -0,0 +1,27 @@
+Tutorial 2: Installation
+============================
+
+Slide 1
+---------------
+
+**System Requirements:**
+ - Python 3
+ - python3-venv (Install using *apt-get install python3-venv*)
+ - Ubuntu 14.04
+
+Slide 2
+---------------
+
+**Creating a virtual environment**
+ - What is a virtual environment
+ - Creating a virtual environment in Python 3
+ - *python3 -m venv /<path-to-project-dir>/learn_django*
+ - Shell prompt will be *(learn_django)user1:~$*
+
+Slide 3
+---------------
+
+**Install Django**
+ - pip install django
+ - Check if django is installed using;
+ - Command: *python -m django --version*