https://github.com/dm3/julia-gripes
Various bits of Julia which might not make sense
https://github.com/dm3/julia-gripes
issues julia
Last synced: 11 months ago
JSON representation
Various bits of Julia which might not make sense
- Host: GitHub
- URL: https://github.com/dm3/julia-gripes
- Owner: dm3
- Created: 2019-01-21T18:01:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T09:04:55.000Z (almost 7 years ago)
- Last Synced: 2025-01-10T15:14:52.890Z (about 1 year ago)
- Topics: issues, julia
- Language: Julia
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InstantiateDevProject
Julia 1.0.3
> julia
> ]activate env
Ok, now try `instantiate`:
(MyEnv) pkg> instantiate
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
Resolving package versions...
ERROR: Unsatisfiable requirements detected for package Utils [00000000]:
Utils [00000000] log:
├─Utils [00000000] has no known versions!
└─restricted to versions * by an explicit requirement — no versions left
fails, as Pkg doesn't know where to find the dev dependency. That's fine, let's
try adding the `Awesomes` dev dependency:
(MyEnv) pkg> dev dev_projects/Awesomes
Resolving package versions...
ERROR: Unsatisfiable requirements detected for package Utils [00000000]:
Utils [00000000] log:
├─Utils [00000000] has no known versions!
└─restricted to versions * by Awesomes [00000000] — no versions left
└─Awesomes [00000000] log:
├─possible versions are: 0.1.0 or uninstalled
└─Awesomes [00000000] is fixed to version 0.1.0
doesn't work - Pkg can't find `Utils` dev dependency. Let's try adding that:
(MyEnv) pkg> dev dev_projects/Utils
Resolving package versions...
ERROR: Unsatisfiable requirements detected for package Awesomes [00000000]:
Awesomes [00000000] log:
├─Awesomes [00000000] has no known versions!
└─restricted to versions * by an explicit requirement — no versions left
this looks like something that should work.