SpecialFunctions ( Julia v1.0 )

Good day.
I need to use besselk function from SpecialFunctions package. Unfortunately, SpecialFunctions don’t work under v1.0 Julia version.
At the same time Distributions.jl uses besselk function and work under v1.0
Would somebody help me, how I can use besselk function?
Thank you.

Are you for sure using the package https://github.com/JuliaMath/SpecialFunctions.jl? If I recall what it had was included in Julia but is now a package.

I see it has besselk and is tested to up to 1.1 at least.

Can you please be more precise and give more context? What package did you install? What exact error do you get, if any?

1 Like

I run Pkg.add(“SpecialFunctions”)
and there is error Unsatisfiable requirements detected for package DebuggerFramework [67417a49]:
DebuggerFramework [67417a49] log:
├─possible versions are: 0.1.0-0.1.2 or uninstalled
├─restricted by compatibility requirements with Atom [c52e3926] to versions: 0.1.0-0.1.2
│ └─Atom [c52e3926] log:
│ ├─possible versions are: [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15, 0.8.0-0.8.5] or uninstalled
│ └─restricted to versions 0.7.14 by an explicit requirement, leaving only versions 0.7.14
└─restricted by julia compatibility requirements to versions: uninstalled — no versions left

Could you please post the output of ]status? Please, also quote code blocks with backticks, see PSA: how to quote code with backticks

2 Likes
pkg> rm -m DebuggerFramework

pkg> add SpecialFunctions

Thank you.