1 2 3 4 5 6 7 8 9 10 11
|
# Append to effective python path so that can find plplot modules
# depending on how python_location[12] are set.
# Note, by careful choice of python_location[12] for the build-tree
# case and the install tree case you can achieve
# a clear separation between build and install tree case.
import sys
sys.path.insert (0, "@python_location1@")
sys.path.insert (0, "@python_location2@")
sys.path.insert (0, "@python_location3@")
sys.path.insert (0, "@python_location4@")
sys.path.insert (0, "@python_location5@")
|