All Projects → pycam → python-basic

pycam / python-basic

Licence: Unlicense license
Python3 teaching materials for basic introduction to Python (2 days)

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to python-basic

Java Training Exercices
Stars: ✭ 44 (+10%)
Mutual labels:  training-materials
Cobol Programming Course
Training materials and labs for a "Getting Started" level course on COBOL
Stars: ✭ 1,963 (+4807.5%)
Mutual labels:  training-materials
technical-training-solutions
No description or website provided.
Stars: ✭ 69 (+72.5%)
Mutual labels:  training-materials
Enterprise Clojure Training
A Clojure training course for Developers and Senior Developers
Stars: ✭ 64 (+60%)
Mutual labels:  training-materials
Training
Container, Monitoring & Logging, Cloud & DevOps Tutorials and Labs
Stars: ✭ 121 (+202.5%)
Mutual labels:  training-materials
Learnosm
LearnOSM.org content, Jekyll layouts & issue tracking. This repository is dedicated to helping people learn how to map in OpenStreetMap (OSM) and use many of the software and tools in the OSM community.
Stars: ✭ 200 (+400%)
Mutual labels:  training-materials
Training
Various Plone Trainings
Stars: ✭ 32 (-20%)
Mutual labels:  training-materials
clojure-by-example
An introduction to Clojure, for programmers who are new to Clojure.
Stars: ✭ 133 (+232.5%)
Mutual labels:  training-materials
Designpatternsincsharp
Samples associated with Pluralsight design patterns in c# courses.
Stars: ✭ 149 (+272.5%)
Mutual labels:  training-materials
You Dont Know Js
A book series on JavaScript. @YDKJS on twitter.
Stars: ✭ 147,493 (+368632.5%)
Mutual labels:  training-materials
Training Material
A collection of code examples as well as presentations for training purposes
Stars: ✭ 85 (+112.5%)
Mutual labels:  training-materials
Scala Course
Scala for Statistical Computing and Data Science Short Course
Stars: ✭ 118 (+195%)
Mutual labels:  training-materials
Fundamentals Materials
React Native Training - Materials Example App
Stars: ✭ 219 (+447.5%)
Mutual labels:  training-materials
Openacc Users Group
Stars: ✭ 57 (+42.5%)
Mutual labels:  training-materials
adsy-trainings
Workshop and training materials
Stars: ✭ 13 (-67.5%)
Mutual labels:  training-materials
Minerva Training Materials
Learn advanced data science on real-life, curated problems
Stars: ✭ 37 (-7.5%)
Mutual labels:  training-materials
Lunatech Scala 2 To Scala3 Course
Lunatech course - "Moving forward from Scala 2 to Scala 3"
Stars: ✭ 174 (+335%)
Mutual labels:  training-materials
voorbeeldenAngular2
Examples and demos on the training Angular Fundamentals (by Peter Kassenaar)
Stars: ✭ 15 (-62.5%)
Mutual labels:  training-materials
clojure-bootcamp
No description or website provided.
Stars: ✭ 14 (-65%)
Mutual labels:  training-materials
Functional Light Js
Pragmatic, balanced FP in JavaScript. @FLJSBook on twitter.
Stars: ✭ 14,764 (+36810%)
Mutual labels:  training-materials

An introduction to solving biological problems with Python - course materials

Materials for the course run by the Graduate School of Life Sciences, University of Cambridge.

If you wish to run the course on your personal computer, here are the steps to follow to get up and running.

Clone this github project

git clone https://github.com/pycam/python-basic.git
cd python-basic

Dependencies

Install Python 3 by downloading the latest version from https://www.python.org/.

Python 2.x is legacy, Python 3.x is the present and future of the language.

Create first a virtual environment using the venv library. Update pip if needed, install jupyter and RISE to get a slideshow extension into jupyter.

Note A virtual environment is a Python environment such that the Python interpreter, libraries and scripts installed into it are isolated from those installed in other virtual environments.

python3 -m venv venv
# activate your virtual environment
source venv/bin/activate
# update pip if needed
pip install --upgrade pip
# install jupyter
pip install jupyter

# slideshow extension
pip install rise
jupyter-nbextension install rise --py --sys-prefix
jupyter nbextension enable rise --py --sys-prefix

Usage

Go to the directory where you've cloned this repository, activate your virtual environment and run jupyter.

Your web browser should automatically open with this url http://localhost:8888/tree where you see the directory tree of the course with all the jupyter notebooks.

cd python-basic
source venv/bin/activate
jupyter notebook

To shutdown jupyter, type ctrl-C into the terminal you've ran jupyter notebook, answer y and press enter.

You may wish to deactivate the virtual environment, by entering into the terminal:

deactivate
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].