Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

Commit

Permalink
Merge pull request #197 from twitwi/master
Browse files Browse the repository at this point in the history
Comments on problems with building bc under linux
  • Loading branch information
ahmadia committed Dec 6, 2013
2 parents 44e7de3 + 886224d commit 135c2cd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,31 @@ FAQ
gem uninstall pygments.rb --version "=0.5.2"
gem install pygments.rb --version "=0.5.0"

* *What do I do if I see a `File not found: u'nbconvert'` when I run `make check`?*
<br/>
The output of `make check` looks like this:

WARNING: Unrecognized alias: 'output', it will probably have no effect.[TerminalIPythonApp] File not found: u'nbconvert'
cp tmp/python/novice/01-numpy.html _site/python/novice/01-numpy.html
cp: cannot stat ‘tmp/python/novice/01-numpy.html’: No such file or directory

This means you don't have a recent enough version of IPython (below 1.0) and you should install a newer version.
Installing a local version can be done with:

pip install --upgrade --user ipython

You might need `pip` that can be installed (under Ubuntu and alike) with:

sudo apt-get install python-pip

* *What if I get some missing packages messages when I run `make check`?*
<br/>
Some additional packages are required. They can be installed (under Ubuntu and alike) with:

sudo apt-get install pandoc jinja2

Installation of `jinja2` can also be carried on using `pip`.

* *Where should pages go if multiple boot camps are running at a site simultaneously?*
<br/>
Use subdirectories like `2013-07-01-esu/beginners`,
Expand Down
2 changes: 1 addition & 1 deletion git/novice/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Version control might be the most important topic we teach,
but Git is definitely the most complicated tool.
However,
GitHub presently dominates the open software forge landscape,
so we have help novices learn just enough Git
so we have to help novices learn just enough Git
to feel they can and should learn more on their own.

This is why we don't teach branching:
Expand Down

0 comments on commit 135c2cd

Please sign in to comment.