# Add IJulia from the Jupiter installation in Conda

**URL:** https://discourse.julialang.org/t/add-ijulia-from-the-jupiter-installation-in-conda/18125
**Category:** New to Julia
**Created:** [November 29, 2018, 2:32am UTC](https://discourse.julialang.org/t/add-ijulia-from-the-jupiter-installation-in-conda/18125 "2018-11-29T02:32:44Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![oviedorodolfo](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oviedorodolfo/32/5314_2.png) [@oviedorodolfo](https://discourse.julialang.org/u/oviedorodolfo)
#### Post date: [November 29, 2018, 2:32am UTC](https://discourse.julialang.org/t/add-ijulia-from-the-jupiter-installation-in-conda/18125/1 "2018-11-29T02:32:44Z")

</div>

I am not a programmer. I have only used Matlab and VBA for Excel. I installed Conda to begin learning R and Python. Having discovered Julia, I plan to learn R after Julia.

In the documentation I read:  
To tell IJulia to use your _own_`jupyter` installation, you need to set `ENV["JUPYTER"]` to the path of the `jupyter` program before running `Pkg.add("IJulia")` (if jupyter is in your PATH, you can also just use `ENV["JUPYTER"]="jupyter"` ).

I do not know how to set `ENV["JUPYTER"]` to the path of the `jupyter` program.

My PC runs Windows. Should I go the the DOS prompt. And then?

Thanks in advance

---

<div class="post-metadata">

### Author: ![Ajaychat3](https://avatars.discourse-cdn.com/v4/letter/a/ecd19e/32.png) [@Ajaychat3](https://discourse.julialang.org/u/Ajaychat3)
#### Post date: [November 29, 2018, 3:43am UTC](https://discourse.julialang.org/t/add-ijulia-from-the-jupiter-installation-in-conda/18125/2 "2018-11-29T03:43:54Z")

</div>

open julia and do the following.

> [@Is IJulia meant to be working with Julia v1.0 yet?](https://discourse.julialang.org/t/is-ijulia-meant-to-be-working-with-julia-v1-0-yet/13257/16):
>
> I took the following steps to install IJulia and it works both on Julia 0.7 and 1.0 version on Win10. I am using normal installation of Python (not Conda). ENV[“PYTHON”] = specify path to ptyhon.exe ENV[“JUPYTER”] = specify path to jupyter.exe using Pkg;Pkg.add(“IJulia”);Pkg.build(“IJulia”) using IJulia Hope it helps.

Type “where python/jupyter” in windows terminal to find their location.  
e.g.

```julia
ENV["JUPYTER"]="C:/Users/chatura/AppData/Local/Programs/Python/Python37/Scripts/jupyter.exe"

```
