From 464c995435ccc197743bba1f82297de145d6ccc0 Mon Sep 17 00:00:00 2001 From: Caleb Hyde Date: Thu, 2 Jul 2015 20:10:13 -0500 Subject: [PATCH 1/3] Expand the README a bit --- README.markdown | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.markdown b/README.markdown index 0dece6a..229862e 100644 --- a/README.markdown +++ b/README.markdown @@ -1,3 +1,25 @@ # Beginner Bootstrap Resources for beginning Python programmers (or anyone interested). + +## Setup + + mkvirtualenv boostrap + pip install -r requirements.txt + +[Virtualenv][venv] is a way to encapsulate the dependencies for a Python project. The `mkvirtualenv` command is part of [virtualenvwrapper][venvwrapper], which adds helper utilities to `virtualenv`. + +Your computer may have python 2.x installed, in addition to python 3. In that case, you might need to specify which python interpreter you want to use: + + mkvirtualenv -p `which python3` bootstrap + +It can also be useful to upgrade pip (and setuptools): + + pip install -U pip setuptools + +## Usage + + ipython notebook # (opens web browser) + +[venvwrapper]: http://virtualenvwrapper.readthedocs.org/en/latest/command_ref.html +[venv]: http://docs.python-guide.org/en/latest/dev/virtualenvs/ From 9246108fe3f134c3389c3cd59daee52904ccc3f1 Mon Sep 17 00:00:00 2001 From: Caleb Hyde Date: Thu, 2 Jul 2015 20:11:03 -0500 Subject: [PATCH 2/3] Correct a typo --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 229862e..0316c90 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Resources for beginning Python programmers (or anyone interested). ## Setup - mkvirtualenv boostrap + mkvirtualenv bootstrap pip install -r requirements.txt [Virtualenv][venv] is a way to encapsulate the dependencies for a Python project. The `mkvirtualenv` command is part of [virtualenvwrapper][venvwrapper], which adds helper utilities to `virtualenv`. From edc3ded142c7f1cbc2d80a6cc1cd0f7420115b8f Mon Sep 17 00:00:00 2001 From: Caleb Hyde Date: Thu, 2 Jul 2015 20:12:02 -0500 Subject: [PATCH 3/3] Get markdown code formatting right --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 0316c90..80d2b6a 100644 --- a/README.markdown +++ b/README.markdown @@ -15,7 +15,7 @@ Your computer may have python 2.x installed, in addition to python 3. In that ca It can also be useful to upgrade pip (and setuptools): - pip install -U pip setuptools + pip install -U pip setuptools ## Usage