# Any way to call the Pkg3 package manager from Juno?

**URL:** https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425
**Category:** Juno
**Created:** [August 14, 2018, 9:25am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425 "2018-08-14T09:25:30Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Moses](https://avatars.discourse-cdn.com/v4/letter/m/278dde/32.png) [@Moses](https://discourse.julialang.org/u/Moses)
#### Post date: [August 14, 2018, 9:25am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425/1 "2018-08-14T09:25:30Z")

</div>

Hello everybody.

I am wondering, whether there is currently a chance to call the `Pkg3` package manager from Juno.  
According to this post [REPL modes don't work in Juno - #11 by pfitzseb](https://discourse.julialang.org/t/repl-modes-dont-work-in-juno/7587/11) there might be way to use it, but I cannot figure it out.

I am using Julia 1.0 together with Juno on Windows 8.1 64bit.

Thanks  
Moses

---

<div class="post-metadata">

### Author: ![thofma](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/thofma/32/1691_2.png) [@thofma](https://discourse.julialang.org/u/thofma)
#### Post date: [August 14, 2018, 9:33am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425/2 "2018-08-14T09:33:32Z")

</div>

Doesn’t `using Pkg; Pkg.add("Bla")` work?

---

<div class="post-metadata">

### Author: ![laborg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/laborg/32/5474_2.png) [@laborg](https://discourse.julialang.org/u/laborg)
#### Post date: [August 14, 2018, 9:42am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425/3 "2018-08-14T09:42:34Z")

</div>

I’ve no problem using the pkg-REPL mode in Juno by opening a console and typing ]. The post you refer to might just be out of date…

---

<div class="post-metadata">

### Author: ![Moses](https://avatars.discourse-cdn.com/v4/letter/m/278dde/32.png) [@Moses](https://discourse.julialang.org/u/Moses)
#### Post date: [August 14, 2018, 9:45am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425/4 "2018-08-14T09:45:55Z")

</div>

Thanks a lot.

The trick was:

```julia
using Pkg

```

I have been using JuliaPro 0.6.2 so far and now want to try to use Julia v1. In JuliaPro it was not necessary to call `using Pkg` so far.

@thofma I cannot mark your post as “solution”, because the button is missing.😕

---

<div class="post-metadata">

### Author: ![Moses](https://avatars.discourse-cdn.com/v4/letter/m/278dde/32.png) [@Moses](https://discourse.julialang.org/u/Moses)
#### Post date: [August 14, 2018, 9:56am UTC](https://discourse.julialang.org/t/any-way-to-call-the-pkg3-package-manager-from-juno/13425/5 "2018-08-14T09:56:04Z")

</div>

@laborg You are right. I was not very clear about that.

I was referring to typing and executing a `Pkg.add() ` command into the panel where I edit my programme.
