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

Update fedora install troubleshooting doc #11827

Merged
merged 2 commits into from
Jan 14, 2020
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
10 changes: 8 additions & 2 deletions doc/install_troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,19 @@ $ curl https://azurecliprod.blob.core.windows.net/install | bash
Errors on install with cffi or cryptography
-------------------------------------------

If you get errors on install on **OS X**, upgrade pip by typing:
If you get errors on installation on **OS X**, upgrade pip by typing:

```shell
pip install --upgrade --force-reinstall pip
```

If you get errors on install on **Debian or Ubuntu** such as the examples below,
If you get errors on installation on **Fedora** such as `No module named '_cffi_backend'`,
install `python3-cffi` by typing:
```shell
sudo yum install -y python3-cffi
```

If you get errors on installation on **Debian or Ubuntu** such as the examples below,
install libssl-dev and libffi-dev by typing:

```shell
Expand Down