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 README with install note #149

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ Some of the functions implemented by this wrapper may be documented in [Base.Gra
There is an extensive set of [examples](samples/Samples.md).

On install, libraries will be compiled from source if not present. [Diagnostics from BinDeps](https://github.com/JuliaLang/BinDeps.jl#diagnostics) may help avoid a lengthy compilation.

**Note** : If you're on Mac OSX and you already have Cairo installed on your system, `Pkg.test("Cairo")` might fail. Uninstall your system's Cairo, or unlink it from your path (The command to do that with Homebrew is `brew unlink cairo`). That way, `Pkg.build("Cairo")` would download the binaries to your `deps/usr`, and `Pkg.build("Cairo")` and `Pkg.test("Cairo")` would work again.