I’m not sure what I’m missing but I’m having problems setting up a Julia project, as follows:
- I started the project on my Mac
- the project uses two unregistered packages:
GitHub - GenieFramework/Stipple.jl: The reactive UI library for interactive data applications with pure Julia.
https://github.com/GenieFramework/GenieAutoreload.jl
Now I want to continue developing the project on my Windows machine so I downloaded the project and I want to instantiate it, as follows:
- I have
developedthe 2 packages in@v1.4:
(@v1.4) pkg> st
Status `C:\Users\adria\.julia\environments\v1.4\Project.toml`
[c43c736e] Genie v0.29.0 [`C:\Users\adria\.julia\dev\Genie`]
[c6228e60] GenieAutoReload v0.1.0 [`C:\Users\adria\.julia\dev\GenieAutoReload`]
[340e8cb6] SearchLight v0.19.0 [`C:\Users\adria\.julia\dev\SearchLight`]
[c3245d6e] Stipple v0.1.0 [`C:\Users\adria\.julia\dev\Stipple`]
- then into the project I tried:
(TitanicDash) pkg> instantiate
Updating registry at `C:\Users\adria\.julia\registries\General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
ERROR: expected package `Stipple [c3245d6e]` to be registered
(TitanicDash) pkg> dev Stipple
Path `C:\Users\adria\.julia\dev\Stipple` exists and looks like the correct package. Using existing path.
Resolving package versions...
ERROR: expected package `GenieAutoReload [c6228e60]` to be registered
(TitanicDash) pkg> dev GenieAutoReload
Path `C:\Users\adria\.julia\dev\GenieAutoReload` exists and looks like the correct package. Using existing path.
Resolving package versions...
ERROR: expected package `Stipple [c3245d6e]` to be registered
No idea what the problem is and what to do next, other than register the packages?