Skip to content
Snippets Groups Projects
Commit 00b85d15 authored by Abhiram R's avatar Abhiram R
Browse files

Modified docs to export CPLUS_INCLUDE_PATH, LD_LIBRARY_PATH and LIBRARY_PATH...

Modified docs to export CPLUS_INCLUDE_PATH, LD_LIBRARY_PATH and LIBRARY_PATH correctly even if they weren't originally assigned
parent 7ed8a2c6
No related branches found
No related tags found
No related merge requests found
...@@ -23,11 +23,11 @@ Quick install for debian/ubuntu like linux distributions. ...@@ -23,11 +23,11 @@ Quick install for debian/ubuntu like linux distributions.
$ mkdir build && cd build $ mkdir build && cd build
$ cmake .. $ cmake ..
$ make $ make
$ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:`pwd`/../include $ cd ..
$ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:`pwd` $ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}${CPLUS_INCLUDE_PATH:+:}`pwd`/include/
$ export LIBRARY_PATH=${LIBRARY_PATH}:`pwd` $ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}`pwd`/build/
$ export LIBRARY_PATH=${LIBRARY_PATH}${LIBRARY_PATH:+:}`pwd`/build/
$ cd ../
$ apt-get install python-virtualenv python-dev $ apt-get install python-virtualenv python-dev
$ virtualenv pyrocks_test $ virtualenv pyrocks_test
$ cd pyrocks_test $ cd pyrocks_test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment