Added a note that you have to add Mac/Lib to sys.path after doing

a "make installmacsubtree".
This commit is contained in:
Jack Jansen 2002-01-18 16:12:27 +00:00
parent 43b936d08c
commit 109f0945e4
2 changed files with 7 additions and 0 deletions

View file

@ -137,3 +137,6 @@ installmacsubtree:
esac; \
done; \
done
@echo '** Copy the contents of sample_sitecustomize.py (or similar code) into'
@echo '**' $(INSTALLDIR)/lib/python2.2/sitecustomize.py

View file

@ -0,0 +1,4 @@
import sys
import os
_maclib = os.path.join(sys.prefix, 'Mac/Lib')
sys.path.append(_maclib)