An introduction to python

Jimmy Allen 52814211a8 Stuff 1 개월 전
.ipynb_checkpoints 5bb1ed2dfc Inital Commit 1 개월 전
.gitignore eca9be358c Initial commit 1 개월 전
00.index.ipynb 52814211a8 Stuff 1 개월 전
01.intro.ipynb 52814211a8 Stuff 1 개월 전
02.hello-world.ipynb 52814211a8 Stuff 1 개월 전
03.maths.ipynb 5bb1ed2dfc Inital Commit 1 개월 전
04.variables.ipynb 5bb1ed2dfc Inital Commit 1 개월 전
05.input.ipynb 52814211a8 Stuff 1 개월 전
10.ipynb 52814211a8 Stuff 1 개월 전
LICENSE 5bb1ed2dfc Inital Commit 1 개월 전
README.md 52814211a8 Stuff 1 개월 전
input.ipynb 5bb1ed2dfc Inital Commit 1 개월 전
run.bat 5bb1ed2dfc Inital Commit 1 개월 전
run.sh 52814211a8 Stuff 1 개월 전

README.md

An Introduction To Python

Install Python

Follow the documentation here. https://www.python.org/downloads/ Make sure you install python3.7 or greater.

Install pip

If pip is not installed follow these instructions. https://pip.pypa.io/en/stable/installing/

Install Jupyter

python3 -m pip install --upgrade pip
python3 -m pip install jupyter

Full instructions can be found here: http://jupyter.org/install

Download This Tutorial

https://git.1248.nz/python/Introduction/archive/master.zip

With Git

git clone https://git.1248.nz/python/Introduction.git

Run Jupyter

You can either use the run.bat for Windows or run.sh for Linux/Mac.
Or you can run

jupyter notebook --NotebookApp.token=''

Then go to http://localhost:8888/notebooks/01.intro.ipynb in your browser.