mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Added a note that you have to add Mac/Lib to sys.path after doing
a "make installmacsubtree".
This commit is contained in:
parent
43b936d08c
commit
109f0945e4
2 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
4
Mac/OSX/sample_sitecustomize.py
Normal file
4
Mac/OSX/sample_sitecustomize.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import sys
|
||||
import os
|
||||
_maclib = os.path.join(sys.prefix, 'Mac/Lib')
|
||||
sys.path.append(_maclib)
|
||||
Loading…
Add table
Add a link
Reference in a new issue