Skip to content

Instantly share code, notes, and snippets.

@Ken-B
Created February 17, 2017 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ken-B/6a27ce5427801a14a32680374a9ef7be to your computer and use it in GitHub Desktop.
Save Ken-B/6a27ce5427801a14a32680374a9ef7be to your computer and use it in GitHub Desktop.
pkg.resolve fails
#=
REQUIRE FILE:
BenchmarkTools
BuildExecutable
Cairo
Clp
Cxx
DecisionTree
DifferentialEquations
Distributions
DSGE
Escher
Evolutionary
FixedEffectModels
ForwardDiff
Gadfly
Gallium
GaussianMixtures
GLM
GLVisualize
GR
GraphPlot
GraphViz
IJulia
IJuliaPortrayals
Images
IniFile
Interact
InteractiveFixedEffectModels
JuMP
Knet
LeastSquaresOptim
LombScargle
Mads
Mamba
MixedModels
Mocha
NLPModels
Optim
ParallelAccelerator
Parameters
PkgDev
PlotlyJS
PlotRecipes
ProfileView
PyPlot
Quandl
QuartzImageIO
QuickTypes
ScikitLearn
SimJulia
Sobol
Stan
StaticArrays
StatPlots
Symata
SymPy
TensorFlow
TestImages
TikzGraphs
Tk
Turing
VML
Yeppp
=#
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.5.0 (2016-09-19 18:14 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-apple-darwin13.4.0
julia> Pkg.init()
INFO: Initializing package repository /Users/ken/.julia/v0.5
INFO: Cloning METADATA from https://github.com/JuliaLang/METADATA.jl
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Computing changes...
ERROR: unsatisfiable package requirements detected: no feasible version could be found for package: GtkUtilities
(you may try increasing the value of the
JULIA_PKGRESOLVE_ACCURACY environment variable)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:? (repeats 2 times)
in update(::String, ::Set{String}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#update,Tuple{String,Set{String}}})() at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#update,Tuple{String,Set{String}}}, ::String) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#update,Tuple{String,Set{String}}}, ::String) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
in #cd#1(::Array{Any,1}, ::Function, ::Function, ::String, ::Vararg{Any,N}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
in update() at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
julia> Pkg.dependents("GtkUtilities")
2-element Array{AbstractString,1}:
"Immerse"
"ProfileView"
julia> Pkg.dependents("Immerse")
0-element Array{AbstractString,1}
julia> ENV["JULIA_PKGRESOLVE_ACCURACY"] = "3"
"3"
julia> Pkg.resolve()
ERROR: unsatisfiable package requirements detected: no feasible version could be found for package: Distributions
(you may try increasing the value of the
JULIA_PKGRESOLVE_ACCURACY environment variable)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:? (repeats 2 times)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}, ::Dict{String,Tuple{VersionNumber,Bool}}, ::Dict{String,Base.Pkg.Types.Fixed}) at ./pkg/entry.jl:476
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}})() at ./pkg/dir.jl:31
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}}, ::String) at ./file.jl:59
in #cd#1(::Array{Any,1}, ::Function, ::Function) at ./pkg/dir.jl:31
in resolve() at ./pkg/pkg.jl:220
julia> ENV["JULIA_PKGRESOLVE_ACCURACY"] = "5"
"5"
julia> Pkg.resolve()
ERROR: unsatisfiable package requirements detected: no feasible version could be found for package: Compat
(you may try increasing the value of the
JULIA_PKGRESOLVE_ACCURACY environment variable)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:? (repeats 2 times)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}, ::Dict{String,Tuple{VersionNumber,Bool}}, ::Dict{String,Base.Pkg.Types.Fixed}) at ./pkg/entry.jl:476
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}})() at ./pkg/dir.jl:31
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}}, ::String) at ./file.jl:59
in #cd#1(::Array{Any,1}, ::Function, ::Function) at ./pkg/dir.jl:31
in resolve() at ./pkg/pkg.jl:220
julia> ENV["JULIA_PKGRESOLVE_ACCURACY"] = "10"
"10"
julia> @time ls = Pkg.resolve()
ERROR: unsatisfiable package requirements detected: no feasible version could be found for package: MultiScaleArrays
(you may try increasing the value of the
JULIA_PKGRESOLVE_ACCURACY environment variable)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:? (repeats 2 times)
in resolve(::Dict{String,Base.Pkg.Types.VersionSet}, ::Dict{String,Dict{VersionNumber,Base.Pkg.Types.Available}}, ::Dict{String,Tuple{VersionNumber,Bool}}, ::Dict{String,Base.Pkg.Types.Fixed}) at ./pkg/entry.jl:476
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}})() at ./pkg/dir.jl:31
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#resolve,Tuple{}}, ::String) at ./file.jl:59
in #cd#1(::Array{Any,1}, ::Function, ::Function) at ./pkg/dir.jl:31
in resolve() at ./pkg/pkg.jl:220
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment