-
Download the latest version of Python from python.org. (In our example it will be Python 3.12.3)
-
Install Python with downloaded .pkg file
-
open the terminal app which you can find in
/System/Applications/Utilities/folder -
install vanilla by copy/pasting following code and hitting enter:
python3.12 -m pip install cocoa-vanilla
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import plistlib | |
| def createBuildTxt(path): | |
| infoPath = os.path.join( | |
| path, | |
| "info.plist" | |
| ) |
OlderNewer