From: Jack Jansen Date: Fri, 18 Jan 2002 16:12:27 +0000 (+0000) Subject: Added a note that you have to add Mac/Lib to sys.path after doing X-Git-Tag: v2.3c1~6825 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=109f0945e4d424176ffc51d7f76af9f5ac521841;p=python Added a note that you have to add Mac/Lib to sys.path after doing a "make installmacsubtree". --- diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 524969bdcf..d11f703a18 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -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 + diff --git a/Mac/OSX/sample_sitecustomize.py b/Mac/OSX/sample_sitecustomize.py new file mode 100644 index 0000000000..09ab44fc27 --- /dev/null +++ b/Mac/OSX/sample_sitecustomize.py @@ -0,0 +1,4 @@ +import sys +import os +_maclib = os.path.join(sys.prefix, 'Mac/Lib') +sys.path.append(_maclib) \ No newline at end of file