eldee
4
On Windows 10 and Julia 1.11.1 at least I got the same error message as you got on WSL 2. Assuming you’re referring to
the problem just seems to be that this package is not registered. Luckily you can simply use
(@v1.11) pkg> add https://github.com/Pangoraw/Polars.jl
which works fine for me.
For DuckDB (v1.1) I got precompilation errors, both on Julia 1.10.4 and 1.11.1. This seems to be a known issue:
In this topic there are also some (links to) suggested workarounds. Using DuckDB v1.0 via
(@v1.11) pkg> add DuckDB_jll@1.0 DuckDB@1.0
(first rm
or remove
v1.1 if it is installed), I did not run into any problems.
1 Like