Skip to content

Commit

Permalink
README: Add notes about build script's used python3
Browse files Browse the repository at this point in the history
  • Loading branch information
OatmealDome committed Oct 30, 2021
1 parent eb3730b commit 959e10e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cd dolphin
Use Homebrew to install software:

```
brew install cmake ninja bartycrouch python3
brew install cmake ninja bartycrouch
```

Install polib:
Expand All @@ -38,6 +38,17 @@ Install polib:
pip3 install --upgrade polib
```

It may be necessary to specify the exact `python3` to install polib into. For example, running `pip3` directly will into the `python3` that is on the `$PATH`. However, the build script may run a different `python3`. If this is the case, run this command instead, specifying the exact path to the python3 being used by the build script:

```
/path/to/python3 -m pip install polib
```

For reference, a reference to the system built-in `python3` can be found at:
```
/path/to/Xcode.app/Contents/Developer/usr/bin/python3
```

Finally, use CocoaPods to install some libraries:
```
cd Source/iOS/DolphiniOS/
Expand Down

0 comments on commit 959e10e

Please sign in to comment.