-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynare does not precompile on linux(ubuntu) with julia version 1.6.7 #62
Comments
From the error message, can you try to first install Pardiso and build it then install Dynare? |
Thank you for the quick reply, I have tried using Dynare with Julia v1.10 but apparently some functions did not work properly(for example the same mod file works on windows but does not work on linux with the exact same environment configuration), that's why I tried using the version specified in the docs, otherwise Dynare installs on Julia v1.10, |
here's the model that I am trying to run, but unfortunately it does not produce a result , I would be thankful if you can point out if somethings not supported here L_GDP, ; varexo E_GDP_GAP, ; parameters model; L_GDP = GDP_GAP + L_GDP_BAR; GDP_GAP = ALPHA1*GDP_GAP(-1) + E_GDP_GAP; L_GDP_BAR = L_GDP_BAR(-1) + G_Y_BAR/4 - G/4 + E_L_GDP_BAR; G_Y_BAR = ALPHA2*G_Y_BAR(-1) + (1-ALPHA2)*G + E_G_Y_BAR; end; shocks; var E_GDP_GAP; stderr 1.8; end; steady_state_model; L_GDP = 1; end; // steady(nocheck); stoch_simul(order=1, irf=80, nograph); varobs L_GDP; calib_smoother(datafile='gdp.csv', diffuse_filter);` |
Purely backward models aren't yet supported in DynareJulia. For linear models, as it is the case here, this will be added shortly. |
You must mean |
Yes, thank you for your swift response again |
Purely backward linear models are now supported in DynareJulia with DynareJulia/LinearRationalExpectations.jl@9f1c5ca Please update your installation with
|
ERROR: LoadError: please run Pkg.build("Pardiso") before loading the package Stacktrace: [1] error(s::String) @ Base ./error.jl:33 [2] top-level scope @ ~/.julia/packages/Pardiso/rrIt7/src/Pardiso.jl:6 [3] include @ ./Base.jl:384 [inlined] [4] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt64}}, source::String) @ Base ./loading.jl:1235 [5] top-level scope @ none:1 [6] eval @ ./boot.jl:360 [inlined] [7] eval(x::Expr) @ Base.MainInclude ./client.jl:446 [8] top-level scope @ none:1
The text was updated successfully, but these errors were encountered: