diff --git a/src/Conda.jl b/src/Conda.jl index f64fb46..5481531 100644 --- a/src/Conda.jl +++ b/src/Conda.jl @@ -137,9 +137,9 @@ function _installer_url() end # mapping of Julia architecture names to Conda architecture names, where they differ - arch2conda = Dict(:i686 => :x86) + arch2conda = Dict(:i686 => :x86, :powerpc64le => :ppc64le) - if Sys.ARCH in (:i686, :x86_64, :ppc64le) + if Sys.ARCH in (:i686, :x86_64, :ppc64le, :powerpc64le) res *= string('-', get(arch2conda, Sys.ARCH, Sys.ARCH)) else error("Unsupported architecture: $(Sys.ARCH)")