Skip to content

Commit

Permalink
update build notes
Browse files Browse the repository at this point in the history
  • Loading branch information
PhotoNomad0 committed Nov 17, 2022
1 parent 86dd22f commit 5b01524
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/development/Electronite/MacBuildNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ nvm use v16
node --version
```
- installed homebrew: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"`
- Installed Python 3.9 (Python 3.10 has breaking changes that broke the compile) `brew install [email protected]`
- Installed Python 3.9 (Python 3.10 has breaking changes that broke the compile) `brew install [email protected]`. Check by `python3 --version`
- make sure there is a Python 2 installed by `python --version` (should report 2.x.x)
- configured Python:
```
pip3 install --user --upgrade pip
Expand Down
5 changes: 3 additions & 2 deletions docs/development/Electronite/WindowsBuildNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
- Under Virus & threat protection settings, select Manage settings, and then under Exclusions, select Add or remove exclusions.
- Add folder `.\Build-Electron` (which is the default build folder used below, or the build folder you actually use).
- Add to git support for long file names: `git config --system core.longpaths true`
- Installed VS 2019 Community edition and Windows SDK 10.0.19041.0.
- Installed Python 3.9.11 (Python 3.10 has breaking changes that broke compile) from `https://www.python.org/downloads/windows/`. Had problem at run time that `python3` could not be found. So I found the path to the python3 installation. When I looked in there it only had a `python.exe`, so I just copied it and renamed the copy to be `python3.exe`.
- Installed VS 2019 Community edition and Windows SDKs 10.0.19041.0 and 10.0.20348.0. Some Electron build will pick the one it needs.
- Installed Python 3.9.11 (Python 3.10 has breaking changes that broke compile) from `https://www.python.org/downloads/windows/`. Check by `python3 --version`.
- make sure there is a Python 2 installed by `python --version` (should report 2.x.x)
- configured Python:
```
python3 -m pip install --upgrade pip setuptools wheel
Expand Down

0 comments on commit 5b01524

Please sign in to comment.