# Julia unable to recognize ROOT 6.32.08

**URL:** https://discourse.julialang.org/t/julia-unable-to-recognize-root-6-32-08/134128
**Category:** General Usage
**Tags:** question, package
**Created:** [November 26, 2025, 1:28am UTC](https://discourse.julialang.org/t/julia-unable-to-recognize-root-6-32-08/134128 "2025-11-26T01:28:32Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Aditya747S](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/aditya747s/32/219549_2.png) [@Aditya747S](https://discourse.julialang.org/u/Aditya747S)
#### Post date: [November 26, 2025, 1:28am UTC](https://discourse.julialang.org/t/julia-unable-to-recognize-root-6-32-08/134128/1 "2025-11-26T01:28:32Z")

</div>

I have installed ROOT 6.32.08 and it is available in PATH but when I do add ROOT in Julia REPL I am getting this warning

```julia-auto
(@v1.11) pkg> add ROOT
   Resolving package versions...
  No Changes to `C:\Users\Aditya\.julia\environments\v1.11\Project.toml`
  No Changes to `C:\Users\Aditya\.julia\environments\v1.11\Manifest.toml`
Precompiling project...
  ✓ ROOT
  1 dependency successfully precompiled in 12 seconds. 644 already precompiled.
  1 dependency precompiled but a different version is currently loaded. Restart julia to access the new version. Otherwise, loading dependents of this package may trigger further precompilation to work with the unexpected version.
  1 dependency had output during precompilation:
┌ ROOT
│ ┌ Error: No supported ROOT version installation. Please install ROOT (https://root.cern/install) version 6.32.8 or 6.32.6, and call ROOTpres.setROOTSYS(path) to set the path to the installation base directory (i.e containting bin/root and bin/root-config).
│ └ @ ROOT.Internals.CxxBuild C:\Users\Aditya\.julia\packages\ROOT\Jh2Bm\src\CxxBuild.jl:241
└

```

For reference this is my root version

```julia-auto
PS C:\Users\Aditya> root
   ------------------------------------------------------------------
  | Welcome to ROOT 6.32.08 https://root.cern |
  | (c) 1995-2024, The ROOT Team; conception: R. Brun, F. Rademakers |
  | Built for win64 on Nov 14 2024, 09:53:39 |
  | From tags/v6-32-08@v6-32-08 |
  | With MSVC 19.39.33521.0 |
  | Try '.help'/'.?', '.demo', '.license', '.credits', '.quit'/'.q' |
   ------------------------------------------------------------------

root [0] .q
PS C:\Users\Aditya>

```

I am using Windows 11 25H2 and Julia 1.11.6

---

<div class="post-metadata">

### Author: ![Sukera](https://avatars.discourse-cdn.com/v4/letter/s/ce7236/32.png) [@Sukera](https://discourse.julialang.org/u/Sukera)
#### Post date: [November 26, 2025, 7:07am UTC](https://discourse.julialang.org/t/julia-unable-to-recognize-root-6-32-08/134128/2 "2025-11-26T07:07:30Z")

</div>

> [@Aditya747S](#):
>
> `and call ROOTpres.setROOTSYS(path) to set the path to the installation base directory (i.e containting bin/root and bin/root-config)`

Have you called this function mentioned in the warning?

---

<div class="post-metadata">

### Author: ![Aditya747S](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/aditya747s/32/219549_2.png) [@Aditya747S](https://discourse.julialang.org/u/Aditya747S)
#### Post date: [November 26, 2025, 8:44am UTC](https://discourse.julialang.org/t/julia-unable-to-recognize-root-6-32-08/134128/3 "2025-11-26T08:44:30Z")

</div>

I tried doing this

```julia-auto
julia> using ROOT
┌ Warning: The imported ROOT module is empty because of the error mentioned above. To import the module again after resolving the issue, a restart of Julia is required.
└ @ ROOT C:\Users\Aditya\.julia\packages\ROOT\Jh2Bm\src\ROOT.jl:111

julia> ROOTpres.setROOTSYS("C:\\root_v6.32.08")
ERROR: UndefVarError: `ROOTpres` not defined in `Main`
Suggestion: check for spelling errors or missing imports.
Stacktrace:
 [1] top-level scope
   @ REPL[6]:1

julia>

```
