Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
README: add dev setup troubleshooting to Contributing section (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav Paul authored Aug 31, 2017
1 parent 0810a78 commit 6fc642d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,32 @@ PRs are welcome, but here are a few general guidelines:
bash /path/to/marathon-lb/scripts/install-git-hooks.sh
```

### Troubleshooting your development environment setup

#### FileNotFoundError: [Errno 2] No such file or directory: 'curl-config'

You need to install the curl development package.

```sh
# Fedora
dnf install libcurl-devel

# Ubuntu
apt-get install libcurl-dev
```

#### ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)

The `pycurl` package linked against the wrong SSL backend when you installed it.

```sh
pip uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip install -r requirements-dev.txt
```

Swap `nss` for whatever backend it mentions.

## Release Process

1. Create a Github release. Follow the convention of past releases. You can find
Expand Down

0 comments on commit 6fc642d

Please sign in to comment.