Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added SSL Error description and resolution in troubleshooting section … #1718

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,22 @@ Many operating systems offer python PIP packages through their package manager (
recommend avoiding those packages, but rather installing from PIP in a virtual environment. The reason for this is that
the version of the python package from the OS may not be the required version that the python project depends on. Thus,
users may choose to install F´ into a virtual environment. This is outside the scope of this document.

### SSL Error with Python 3.6+ on macOS

The version of openSSL bundled with Python 3.6+ requires access to macOS's root certificates. If the following error is
encountered while installing fprime:

```
Failed find expected download: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get
local issuer certificate
```

Then run the following command in a macOS terminal to install necessary certificates:

```
cd /Applications/Python\ 3.X/
./Install\ Certificates.command
```

After running above command, re-try installing fprime.