# Where is julia/lib located when using the windows OS in travis?

**URL:** https://travis-ci.community/t/where-is-julia-lib-located-when-using-the-windows-os-in-travis/5947
**Category:** Julia
**Tags:** windows
**Created:** [November 14, 2019, 10:51pm UTC](https://travis-ci.community/t/where-is-julia-lib-located-when-using-the-windows-os-in-travis/5947 "2019-11-14T22:51:54Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![vlandau](https://sea1.discourse-cdn.com/flex015/user_avatar/travis-ci.community/vlandau/32/3145_2.png) [@vlandau](https://travis-ci.community/u/vlandau)
#### Post date: [November 14, 2019, 10:51pm UTC](https://travis-ci.community/t/where-is-julia-lib-located-when-using-the-windows-os-in-travis/5947/1 "2019-11-14T22:51:54Z")

</div>

I’m running into some dependency problems with GZip in a windows pipeline, and it looks to be because zlib1 is missing.

Please see this [related post](https://travis-ci.community/t/error-loaderror-loaderror-error-compiling-top-level-scope-could-not-load-library-zlib1/5944/2). Full output with a stacktrace is [here](https://travis-ci.org/Circuitscape/Omniscape.jl/jobs/612073548#L91).

I saw in a solved issue **[here](https://github.com/JuliaIO/GZip.jl/issues/7)** that downloading zlib1.dll and placing it in julia/lib did the trick. **Could someone let me know the full path of julia/lib in the travis?**

@ararslan  
@StefanKarpinski

---

<div class="post-metadata">

### Author: ![native-api](https://sea1.discourse-cdn.com/flex015/user_avatar/travis-ci.community/native-api/32/430_2.png) [@native-api](https://travis-ci.community/u/native-api)
#### Post date: [November 14, 2019, 11:06pm UTC](https://travis-ci.community/t/where-is-julia-lib-located-when-using-the-windows-os-in-travis/5947/2 "2019-11-14T23:06:50Z")

</div>

According to [https://travis-ci.org/Circuitscape/Omniscape.jl/jobs/612073548#L31](https://travis-ci.org/Circuitscape/Omniscape.jl/jobs/612073548#L31), the interpreter is installed into `C:\julia`, and `/c/julia/bin` and `${TRAVIS_HOME}/julia/bin` are added to `PATH`. So it should be (system-wide) `/c/julia/lib` or (per-user) `${TRAVIS_HOME}/julia/lib`.

---

<div class="post-metadata">

### Author: ![vlandau](https://sea1.discourse-cdn.com/flex015/user_avatar/travis-ci.community/vlandau/32/3145_2.png) [@vlandau](https://travis-ci.community/u/vlandau)
#### Post date: [November 14, 2019, 11:11pm UTC](https://travis-ci.community/t/where-is-julia-lib-located-when-using-the-windows-os-in-travis/5947/3 "2019-11-14T23:11:59Z")

</div>

Thanks so much! I really appreciate the help. I’ll try the fix in the github issue and download the dll file to `/c/julia/lib`.
