Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

README.md

Python Tutorial

This repository intends to provide a summary of the beginner topics in order to become an effective python developer.

Getting started

Clone repo

$ mkdir python-intro
$ cd python-intro
$ git clone https://github.com/rjdscott/python-intro.git
$ cd python-intro

Setup virtual environment

In the project folder create a local virtual environment for python and install required packages

$ pip install virtualenv
$ virtuanelv .env
(.env) $ source .env/bin/activate
(.env) $ pip install -r requirements.txt
You can’t perform that action at this time.