Skip to content

Commit

Permalink
Wrong path in TL;DR section
Browse files Browse the repository at this point in the history
Was:
``cmake .. -DEIGEN3_INCLUDE_DIR=../eigen -DPYTHON=`which python` ``
At least on my machine, it had to be
``cmake .. -DEIGEN3_INCLUDE_DIR=../../eigen -DPYTHON=`which python` ``
  • Loading branch information
peteruhrig authored Mar 17, 2017
1 parent 1eb6a06 commit 8e058c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ TL;DR
mkdir build
cd build
# without GPU support:
cmake .. -DEIGEN3_INCLUDE_DIR=../eigen -DPYTHON=`which python`
cmake .. -DEIGEN3_INCLUDE_DIR=../../eigen -DPYTHON=`which python`
# or with GPU support:
cmake .. -DEIGEN3_INCLUDE_DIR=../eigen -DPYTHON=`which python` -DBACKEND=cuda
cmake .. -DEIGEN3_INCLUDE_DIR=../../eigen -DPYTHON=`which python` -DBACKEND=cuda
make -j 2 # replace 2 with the number of available cores
cd python
Expand Down

0 comments on commit 8e058c2

Please sign in to comment.