Pkg.jl icon indicating copy to clipboard operation
Pkg.jl copied to clipboard

Pkg - Package manager for the Julia programming language

Results 287 Pkg.jl issues
Sort by recently updated
recently updated
newest added

`docs/getting-started.md` is the only page currently served within julia docs. https://docs.julialang.org/en/v1/stdlib/Pkg/ There is a clear link to the full separately hosted docs, but them being hosted separately prevents users from...

documentation

`^C`-ing a `Pkg.test` run doesn't seem to reliably interrupt the child session, leaving it orphaned and running even when you close julia Observed on ubuntu

bug

**Feature request** After creating a user project you often want to run some of the examples that are often provided with packages. There should be a default location for examples,...

Fixes https://github.com/JuliaLang/Pkg.jl/issues/2525 by using @fredrikekre's suggestion https://github.com/JuliaLang/Pkg.jl/issues/2525#issuecomment-827492474. ~~It seems to work in some brief testing locally, but I should still figure out how to add the scenario to the tests...

**Feature request** There should be a standard method to create a system image. Of course there are many options and it is not so clear how to implement this feature...

**Feature request** It should be easier to create new user projects. Currently you need to do: ``` mkdir new_project cd new_project julia --project="." using Pkg pkg"add LinearAlgebra" prg"add StaticArrays" ```...

When adding a specific version of a package that's incompatible with your project's compat bounds, you will get this error message: ``` (dev) pkg> add [email protected] Resolving package versions... ERROR:...

This needs to be removed: https://github.com/JuliaLang/Pkg.jl/blob/7676431149332ae400a805632082b12263c20269/src/API.jl#L1742 Also, don't randomly ccall methods which don't apply to your memory type. (yes, it is not ideal that the only wrapper for this functionality...

fixes https://github.com/JuliaLang/Pkg.jl/issues/2664 I think this needs a bit of thinking though. For example, if you use PackageCompiler you want that `ensure_artifact_installed` to download the artifact even if it is overridden....

Did the behavior of no-arg `Pkg.activate()` change with Julia v1.6, such that it activates the default env.? In other words - does the docs need updating, cf. https://pkgdocs.julialang.org/v1/api/#Pkg.activate ? On...