/LearnPython

Path to Learnig Python

Primary LanguageJupyter Notebook

Learning Python

Ordered List of Tutorial content

Video Tutorials

Excercises

Tutorials

Exercises / Practise

Reference / Slides

Resources for DevOps

Resources for Data Science

Troubleshooting

If mac has both python2 and python3 installed, the correct pip command should be used for installing packages

# Python2
> sudo pip install openpyxl
# Python3
> sudo pip3 install openpyxl

Installation of an Environment called "jupyter"

Anaconda Distribution Download - Python 3.7 version for macOS Installer

Installation of a Framework called "Django"

If mac has both python2 and python3 installed, the correct pip command should be used for installing packages

# Python2
> sudo pip install Django==2.2.1
# Python3
> sudo pip3 install Django==2.2.1