diff options
author | ankitjavalkar | 2017-05-17 15:38:21 +0530 |
---|---|---|
committer | GitHub | 2017-05-17 15:38:21 +0530 |
commit | b8031d5e04e4c87d159ed4558758645bdb388220 (patch) | |
tree | 515a8a2aa08c61a7e9b80235e778895b2272c254 /tutorial_2_installation/slides.md | |
parent | 9253a86945ad197785641db09fc40e28826ca4fb (diff) | |
download | learn_django-b8031d5e04e4c87d159ed4558758645bdb388220.tar.gz learn_django-b8031d5e04e4c87d159ed4558758645bdb388220.tar.bz2 learn_django-b8031d5e04e4c87d159ed4558758645bdb388220.zip |
create slides for tutorial 2
Diffstat (limited to 'tutorial_2_installation/slides.md')
-rw-r--r-- | tutorial_2_installation/slides.md | 27 |
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* |