I am getting a get_color_palette undefined in the Plots
module after an update. Here is the update
:
(@v1.4) pkg> update Plots
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
Installed ArrayInterface ───────── v2.9.1
Installed DiffEqNoiseProcess ───── v5.0.3
Installed Parsers ──────────────── v1.0.7
Installed RecursiveFactorization ─ v0.1.4
Installed VectorizationBase ────── v0.12.21
Installed BlockBandedMatrices ──── v0.8.10
Installed Polynomials ──────────── v1.1.3
Installed StatsMakie ───────────── v0.2.3
Installed LabelledArrays ───────── v1.3.0
Installed SparseDiffTools ──────── v1.9.1
Installed FiniteDiff ───────────── v2.4.1
Installed Contour ──────────────── v0.5.4
Installed JuliaInterpreter ─────── v0.7.24
Installed FixedPointNumbers ────── v0.8.2
Installed OffsetArrays ─────────── v1.1.1
Installed ImageFiltering ───────── v0.6.14
Installed ElasticArrays ────────── v1.2.3
Installed ColorTypes ───────────── v0.10.6
Installed JuliaFormatter ───────── v0.6.6
Installed Roots ────────────────── v1.0.3
Installed LoopVectorization ────── v0.8.15
Installed SLEEFPirates ─────────── v0.5.4
Installed CodeTools ────────────── v0.7.1
Installed SymbolicUtils ────────── v0.4.3
Installed SentinelArrays ───────── v1.2.8
Installed LazyArrays ───────────── v0.16.14
Installed BlockArrays ──────────── v0.12.10
Updating `~/.julia/environments/v1.4/Project.toml`
[no changes]
Updating `~/.julia/environments/v1.4/Manifest.toml`
[4fba245c] ↑ ArrayInterface v2.9.0 ⇒ v2.9.1
[8e7c35d0] ↑ BlockArrays v0.12.9 ⇒ v0.12.10
[ffab5731] ↑ BlockBandedMatrices v0.8.9 ⇒ v0.8.10
[53a63b46] ↑ CodeTools v0.7.0 ⇒ v0.7.1
[944b1d66] ↓ CodecZlib v0.7.0 ⇒ v0.6.0
[3da002f7] ↑ ColorTypes v0.10.5 ⇒ v0.10.6
[d38c429a] ↑ Contour v0.5.3 ⇒ v0.5.4
[77a26b50] ↑ DiffEqNoiseProcess v5.0.2 ⇒ v5.0.3
[fdbdab4c] ↑ ElasticArrays v1.2.2 ⇒ v1.2.3
[6a86dc24] ↑ FiniteDiff v2.3.2 ⇒ v2.4.1
[53c48c17] ↑ FixedPointNumbers v0.8.1 ⇒ v0.8.2
[6a3955dd] ↑ ImageFiltering v0.6.13 ⇒ v0.6.14
[98e50ef6] ↑ JuliaFormatter v0.6.5 ⇒ v0.6.6
[aa1ae85d] ↑ JuliaInterpreter v0.7.23 ⇒ v0.7.24
[2ee39098] ↑ LabelledArrays v1.2.2 ⇒ v1.3.0
[5078a376] ↑ LazyArrays v0.16.13 ⇒ v0.16.14
[bdcacae8] ↑ LoopVectorization v0.8.9 ⇒ v0.8.15
[6fe1bfb0] ↑ OffsetArrays v1.1.0 ⇒ v1.1.1
[69de0a69] ↑ Parsers v1.0.6 ⇒ v1.0.7
[f27b6e38] ↑ Polynomials v1.1.2 ⇒ v1.1.3
[f2c3362d] ↑ RecursiveFactorization v0.1.3 ⇒ v0.1.4
[f2b01f46] ↑ Roots v1.0.2 ⇒ v1.0.3
[476501e8] ↑ SLEEFPirates v0.5.2 ⇒ v0.5.4
[91c51154] ↑ SentinelArrays v1.2.6 ⇒ v1.2.8
[47a9eef4] ↑ SparseDiffTools v1.9.0 ⇒ v1.9.1
[65254759] ↑ StatsMakie v0.2.2 ⇒ v0.2.3
[d1185830] ↑ SymbolicUtils v0.4.2 ⇒ v0.4.3
[e0df1984] ↑ TextParse v0.9.1 ⇒ v1.0.0
[3d5dd08c] ↑ VectorizationBase v0.12.17 ⇒ v0.12.21
I am how precompiling everything. Question: is is possible to precompile a single module? Right now, Juno
is precompiling DiffEqOperators
, which takes a long time, and then DynamicHMC
, and then … . Is there not way to be more selective on what gets recompiled? I do not need all my modules every time I use Julia. Thanks.