diff --git a/README.md b/README.md index 0dc8f4f..d5b6384 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ More thorough docs are available at [http://jparyani.github.io/pycapnp/](http:// First you need a system-wide installation of the Cap'n Proto C++ library >= 0.3. Follow the [official installation docs](http://kentonv.github.io/capnproto/install.html) or for the lazy: ```bash -wget http://capnproto.org/capnproto-c++-0.3.0-rc5.tar.gz -tar xzf capnproto-c++-0.3.0-rc5.tar.gz -cd capnproto-c++-0.3.0-rc5 +curl -O http://capnproto.org/capnproto-c++-0.3.0.tar.gz +tar zxf capnproto-c++-0.3.0.tar.gz +cd capnproto-c++-0.3.0 ./configure -make -j8 check +make -j6 check sudo make install ``` diff --git a/docs/install.rst b/docs/install.rst index d48aa01..6ad358b 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -8,11 +8,11 @@ C++ Cap'n Proto Library You need to install the C++ Cap'n Proto library first. It requires a C++ compiler with C++11 support, such as GCC 4.7+ or Clang 3.2+. Follow installation docs at `http://kentonv.github.io/capnproto/install.html `_, or if you're feeling lazy, you can run the commands below:: - wget http://capnproto.org/capnproto-c++-0.3.0-rc5.tar.gz - tar xzf capnproto-c++-0.3.0-rc5.tar.gz - cd capnproto-c++-0.3.0-rc5 + curl -O http://capnproto.org/capnproto-c++-0.3.0.tar.gz + tar zxf capnproto-c++-0.3.0.tar.gz + cd capnproto-c++-0.3.0 ./configure - make -j8 check + make -j6 check sudo make install Pip diff --git a/docs/quickstart.rst b/docs/quickstart.rst index e424382..6c2388a 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -217,8 +217,8 @@ And similarly for reading:: f = open('example.bin') addresses = addressbook.AddressBook.read(f) -Dictionaries -~~~~~~~~~~~~~~ +Dictionaries (Experimental) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ There is a convenience method for converting Cap'n Proto messages to a dictionary. This works for both Builder and Reader type messages::