From 53134a4761825d4fcd28c2cd415dd042260885bc Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Sun, 4 May 2014 15:13:28 +0200 Subject: [PATCH] clarification --- doc/python.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/python.tex b/doc/python.tex index 8e7e383e..a7939799 100644 --- a/doc/python.tex +++ b/doc/python.tex @@ -27,10 +27,10 @@ import os, sys # '\' to avoid pitfalls with string escaping) # Configure the search path for the Python extension module -sys.path.append('path-to-mitsuba-directory/python/') +sys.path.append('path-to-mitsuba-dist-directory/python/') # Ensure that Python will be able to find the Mitsuba core libraries -os.environ['PATH'] = 'path-to-mitsuba-directory' + os.pathsep + os.environ['PATH'] +os.environ['PATH'] = 'path-to-mitsuba-dist-directory' + os.pathsep + os.environ['PATH'] import mitsuba \end{python}