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 docs for building protobuf on windows #886

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
20 changes: 20 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,26 @@ Neither virtualenv nor OpenHTF's Python dependencies are included in the
repository. The following steps set up a new virtualenv environment and install
OpenHTF's dependencies into it using pip.

### Windows
```
Install pkg-config lite from:
https://sourceforge.net/projects/pkgconfiglite/

Add pkg-config to windows path

Install protobuf with pip/conda

https://anaconda.org/anaconda/protobuf
conda install -c anaconda protobuf

Create an environment variable PKG_CONFIG_PATH
Set PKG_CONFIG_PATH to direct to protobuf.pc directory

Locate the protobuf.pc file under your package manager pkgs directory.
You should now be able to install openhtf with pip install openhtf

```


### Linux (Debian/Ubuntu)
These install instructions assume Bash as the shell environment. If you're using
Expand Down