# Problems trying to compile with JuliaC.jl: "Parameters not found"

**URL:** https://discourse.julialang.org/t/problems-trying-to-compile-with-juliac-jl-parameters-not-found/135168
**Category:** General Usage
**Created:** [January 20, 2026, 7:33pm UTC](https://discourse.julialang.org/t/problems-trying-to-compile-with-juliac-jl-parameters-not-found/135168 "2026-01-20T19:33:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![JJMerelo](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jjmerelo/32/217998_2.png) [@JJMerelo](https://discourse.julialang.org/u/JJMerelo)
#### Post date: [January 20, 2026, 7:33pm UTC](https://discourse.julialang.org/t/problems-trying-to-compile-with-juliac-jl-parameters-not-found/135168/1 "2026-01-20T19:33:31Z")

</div>

I’m trying t compile a script using JuliaC.jl and julia version 1.12.3, and I’m getting this error:

````julia-auto
◓ Compiling... Activating project at `/home/jmerelo/Code/julia/BraveNewAlgorithm.jl`
◓ Compiling...ArgumentError: Package Parameters not found in current path.
- Run `import Pkg; Pkg.add("Parameters")` to install the Parameters package.
Stacktrace:
  [1] macro expansion
    @ ./loading.jl:2403 [inlined]
  [2] macro expansion
    @ ./lock.jl:376 [inlined]
  [3] __require(into::Module, mod::Symbol)
    @ Base ./loading.jl:2386
  [4] require(into::Module, mod::Symbol)
    @ Base ./loading.jl:2362
  [5] include(mapexpr::Function, mod::Module, _path::String)
    @ Base ./Base.jl:307
  [6] top-level scope
    @ /home/jmerelo/Code/julia/BraveNewAlgorithm.jl/src/BraveNewAlgorithm.jl:18
  [7] include(mapexpr::Function, mod::Module, _path::String)
    @ Base ./Base.jl:307
  [8] top-level scope
    @ /home/jmerelo/Code/julia/BraveNewAlgorithm.jl/examples/BBOB_sphere_with_baseline.jl:10
  [9] include(mod::Module, _path::String)
    @ Base ./Base.jl:306
 [10] top-level scope
    @ ~/.julia/packages/JuliaC/EFQEY/src/scripts/juliac-buildscript.jl:92
 [11] include(mod::Module, _path::String)
    @ Base ./Base.jl:306
 [12] exec_options(opts::Base.JLOptions)
    @ Base ./client.jl:317
 [13] _start()
    @ Base ./client.jl:550
in expression starting at /home/jmerelo/Code/julia/BraveNewAlgorithm.jl/src/individual/castes.jl:1
in expression starting at /home/jmerelo/Code/julia/BraveNewAlgorithm.jl/src/BraveNewAlgorithm.jl:1
in expression starting at /home/jmerelo/Code/julia/BraveNewAlgorithm.jl/examples/BBOB_sphere_with_baseline.jl:10
in expression starting at /root/.julia/packages/JuliaC/EFQEY/src/scripts/juliac-buildscript.jl:80
✓ Compiling...
ERROR: Failed to compile examples/BBOB_sphere_with_baseline.jl
```

````

After doing as told from the REPL, I get exactly the same error. This was working before as a script, so I don’t really get what’s the issue here.

[This is what I’m trying to compile](https://github.com/cecimerelo/BraveNewAlgorithm.jl/blob/main/examples/BBOB_sphere_with_baseline.jl) Any help will be appreciated.
