From f82cdc5c998d5392ab862333a827c81ccb6bf1c0 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Thu, 22 Aug 2013 08:31:07 -0700 Subject: [PATCH] Fix random formatting issues --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5dac2a9..3ce31e9 100644 --- a/README.md +++ b/README.md @@ -5,20 +5,20 @@ First you need a system-wide installation of the Capnproto C++ library >= 0.3. Unfortunately, as of now, that means you have to build from the HEAD of Cap'n Proto. Follow these instructions to do so: ```bash - wget https://github.com/kentonv/capnproto/archive/master.zip - unzip master.zip - cd capnproto-master/c++ - ./setup-autotools.sh - autoreconf -i - ./configure - make -j6 check - sudo make install - sudo ldconfig +wget https://github.com/kentonv/capnproto/archive/master.zip +unzip master.zip +cd capnproto-master/c++ +./setup-autotools.sh +autoreconf -i +./configure +make -j6 check +sudo make install +sudo ldconfig ``` A recent version of setuptools is also required. You can install a newer version with: -```python +```bash pip install -U setuptools ```