Skip to content

Commit

Permalink
Added SSL Error descrition and resolution in troubleshooting section …
Browse files Browse the repository at this point in the history
…of INSTALL.md file (#1718)
  • Loading branch information
arizvi786 authored Oct 12, 2022
1 parent bd5bd7c commit 8af699f
Showing 1 changed file with 19 additions and 0 deletions.
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.

0 comments on commit 8af699f

Please sign in to comment.