Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 674 Bytes

File metadata and controls

35 lines (24 loc) · 674 Bytes

An Introduction to Python 3

Class taught to middle and high school students for the Miami Valley Computer Science Circle

Install Python

Install Python 3.6+ from Python.org[https://www.python.org/downloads/]. After installing, verify that you have the correct version by opening a terminal or command prompt and running

$ python --version
Python 3.6.2

Install Dependencies

Install dependencies with ``pip```.

pip install pipenv

Now install the python dependencies using pipenv:

pipenv install

Run the notebook

Run the notebook with all access on a given port using

pipenv run jupyter notebook

This will run the notebook.