# The LOAD\_PATH of JuliaPro-0.6.1.1

**URL:** https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954
**Category:** New to Julia
**Created:** [November 8, 2017, 12:39pm UTC](https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954 "2017-11-08T12:39:48Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![leiteiro](https://avatars.discourse-cdn.com/v4/letter/l/b5e925/32.png) [@leiteiro](https://discourse.julialang.org/u/leiteiro)
#### Post date: [November 8, 2017, 12:39pm UTC](https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954/1 "2017-11-08T12:39:48Z")

</div>

Yesterday I installed JuliaPro-0.6.1.1 on Windows 10. The LOAD\_PATH tells me:  
Any[“C:\Users\Home\AppData\Local\JuliaPro-0.6.1.1\Julia-0.6.1\local\share\julia\site\v0.6”,  
“C:\Users\Home\AppData\Local\JuliaPro-0.6.1.1\Julia-0.6.1\share\julia\site\v0.6”]

I am confused because  
“C:\Users\Home\AppData\Local\JuliaPro-0.6.1.1\Julia-0.6.1”  
has no subdirectory “local\share\julia\site\v0.6” and  
“C:\Users\Home\AppData\Local\JuliaPro-0.6.1.1\Julia-0.6.1\share\julia\site\v0.6” is empty.

Moreover I expected “pkgs-0.6.1.1” to be a subdirectory of Julia-0.6.1 which is not the case.  
So, is everything allright?

---

<div class="post-metadata">

### Author: ![Harsha](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/harsha/32/1985_2.png) [@Harsha](https://discourse.julialang.org/u/Harsha)
#### Post date: [November 8, 2017, 4:07pm UTC](https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954/2 "2017-11-08T16:07:44Z")

</div>

Please check if `Base.LOAD_CACHE_PATH` and `Pkg.dir()` are pointing to one of subfolder of `pkgs-0.6.1.1`

```julia
julia> Base.LOAD_CACHE_PATH
1-element Array{String,1}:
 "C:\\Users\\Home\\AppData\\Local\\JuliaPro-0.6.1.1\\pkgs-0.6.1.1\\lib\\v0.6"

julia> Pkg.dir()
"C:\\Users\\Home\\AppData\\Local\\JuliaPro-0.6.1.1\\pkgs-0.6.1.1\\v0.6"

```

If this is the case, then your JuliaPro REPL / Juno is pointing to the right folders, you should be able to use all the features of JuliaPro.

---

<div class="post-metadata">

### Author: ![leiteiro](https://avatars.discourse-cdn.com/v4/letter/l/b5e925/32.png) [@leiteiro](https://discourse.julialang.org/u/leiteiro)
#### Post date: [November 8, 2017, 6:23pm UTC](https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954/3 "2017-11-08T18:23:10Z")

</div>

The Base.LOAD\_CACHE\_PATH looks as you say. It is the LOAD\_PATH which looks strange to me. So you mean this does not matter?

---

<div class="post-metadata">

### Author: ![Harsha](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/harsha/32/1985_2.png) [@Harsha](https://discourse.julialang.org/u/Harsha)
#### Post date: [November 9, 2017, 6:25am UTC](https://discourse.julialang.org/t/the-load-path-of-juliapro-0-6-1-1/6954/4 "2017-11-09T06:25:11Z")

</div>

> So you mean this does not matter?

Correct, it shouldn’t matter, you should be able to use all the features of JuliaPro without any issues with your current (Default) configurations.
