-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnohup.out
7202 lines (7013 loc) · 519 KB
/
nohup.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sending build context to Docker daemon 261.1kB
Step 1/44 : FROM jupyter/scipy-notebook:latest
---> 844815ed865e
Step 2/44 : ARG OPENBLAS_CORETYPE=HASWELL
---> Using cache
---> 506656d8d3bc
Step 3/44 : ENV NB_USER=jovyan
---> Using cache
---> cc9fb97a5733
Step 4/44 : ENV HOME=/home/$NB_USER
---> Using cache
---> 461e11dcec04
Step 5/44 : USER root
---> Using cache
---> 550a64bdf4cc
Step 6/44 : RUN apt-get update && apt-get install -y --no-install-recommends fonts-dejavu gfortran gcc && rm -rf /var/lib/apt/lists/*
---> Using cache
---> ebf2f74e49df
Step 7/44 : ENV JULIA_DEPOT_PATH=/opt/julia
---> Using cache
---> ab36222a7ef0
Step 8/44 : ENV JULIA_PKGDIR=/opt/julia
---> Using cache
---> f52e27aea410
Step 9/44 : ENV JULIA_VERSION=1.2.0
---> Using cache
---> 92b033b1794d
Step 10/44 : RUN mkdir /opt/julia-${JULIA_VERSION} && cd /tmp && wget -q https://julialang-s3.julialang.org/bin/linux/x64/`echo ${JULIA_VERSION} | cut -d. -f 1,2`/julia-${JULIA_VERSION}-linux-x86_64.tar.gz && echo "926ced5dec5d726ed0d2919e849ff084a320882fb67ab048385849f9483afc47 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && tar xzf julia-${JULIA_VERSION}-linux-x86_64.tar.gz -C /opt/julia-${JULIA_VERSION} --strip-components=1 && rm /tmp/julia-${JULIA_VERSION}-linux-x86_64.tar.gz
---> Using cache
---> 3ad201deea98
Step 11/44 : RUN ln -fs /opt/julia-*/bin/julia /usr/local/bin/julia
---> Using cache
---> 68c61db0048d
Step 12/44 : RUN mkdir /etc/julia && echo "push!(Libdl.DL_LOAD_PATH, \"$CONDA_DIR/lib\")" >> /etc/julia/juliarc.jl && mkdir $JULIA_PKGDIR && chown $NB_USER $JULIA_PKGDIR && fix-permissions $JULIA_PKGDIR
---> Using cache
---> 2ca7bc92a29d
Step 13/44 : USER $NB_UID
---> Using cache
---> a5932ecebf7d
Step 14/44 : RUN conda install --quiet --yes 'r-base=3.6.1' 'r-caret=6.0*' 'r-crayon=1.3*' 'r-devtools=2.1*' 'r-forecast=8.7*' 'r-hexbin=1.27*' 'r-htmltools=0.3*' 'r-htmlwidgets=1.3*' 'r-irkernel=1.0*' 'r-nycflights13=1.0*' 'r-plyr=1.8*' 'r-randomforest=4.6*' 'r-rcurl=1.95*' 'r-reshape2=1.4*' 'r-rmarkdown=1.14*' 'r-rsqlite=2.1*' 'r-shiny=1.3*' 'r-sparklyr=1.0*' 'r-tidyverse=1.2*' 'rpy2=2.9*' && conda clean --all -f -y && fix-permissions $CONDA_DIR && fix-permissions /home/$NB_USER
---> Using cache
---> 14f8f3e9def8
Step 15/44 : RUN julia -e 'import Pkg; Pkg.update()' && (test $TEST_ONLY_BUILD || julia -e 'import Pkg; Pkg.add("HDF5")') && julia -e "using Pkg; pkg\"add IJulia\"; pkg\"precompile\"" && mv $HOME/.local/share/jupyter/kernels/julia* $CONDA_DIR/share/jupyter/kernels/ && chmod -R go+rx $CONDA_DIR/share/jupyter && rm -rf $HOME/.local && fix-permissions $JULIA_PKGDIR $CONDA_DIR/share/jupyter
---> Using cache
---> f43786a1ec7c
Step 16/44 : USER root
---> Using cache
---> 58a1c8e362e3
Step 17/44 : RUN apt-get update && apt-get install -y --no-install-recommends sagemath sagemath-jupyter subversion python-pandas
---> Using cache
---> 58237baf8400
Step 18/44 : ENV CPATH=$CONDA_DIR/include
---> Using cache
---> 760658409ca9
Step 19/44 : USER root
---> Using cache
---> f03b5f31a538
Step 20/44 : RUN sed -i 's/"\/usr\/bin\/sage"/"env", "PATH=\/usr\/local\/sbin:\/usr\/local\/bin:\/usr\/sbin:\/usr\/bin:\/sbin:\/bin", "\/usr\/bin\/sage"/' /usr/share/jupyter/kernels/sagemath/kernel.json
---> Using cache
---> 1566992f9af1
Step 21/44 : RUN julia -e "using Pkg; pkg\"add InstantiateFromURL\""
---> Using cache
---> 503792c8e6ff
Step 22/44 : RUN julia -e "using InstantiateFromURL; using Pkg; github_project(\"QuantEcon/quantecon-notebooks-julia\", version = \"0.3.0\"); pkg\"add OffsetArrays DiffEqBase DiffEqCallbacks DiffEqJump DifferentialEquations StochasticDiffEq IteratorInterfaceExtensions DiffEqOperators\"; InstantiateFromURL.packages_to_default_environment()"
---> Running in f076db851b12
Activating environment at `~/Project.toml`
Updating registry at `/opt/julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
[?25l Fetching: [> ] 0.0 %[2K[?25h Installed DataAPI ───────────────────── v1.0.1
Installed PDMats ────────────────────── v0.9.9
Installed TableTraits ───────────────── v1.0.0
Installed LeastSquaresOptim ─────────── v0.7.2
Installed BlockArrays ───────────────── v0.9.1
Installed ProtoBuf ──────────────────── v0.7.0
Installed DataVoyager ───────────────── v0.3.1
Installed Tracker ───────────────────── v0.2.3
Installed NLSolversBase ─────────────── v7.4.1
Installed Zygote ────────────────────── v0.3.4
Installed CSV ───────────────────────── v0.5.12
Installed NodeJS ────────────────────── v0.6.0
Installed QuantEcon ─────────────────── v0.16.2
Installed Electron ──────────────────── v1.0.0
Installed SpatialIndexing ───────────── v0.1.2
Installed OffsetArrays ──────────────── v0.11.1
Installed ForwardDiff ───────────────── v0.10.3
Installed LoweredCodeUtils ──────────── v0.3.8
Installed DoubleFloats ──────────────── v0.9.8
Installed QueryTables ───────────────── v0.1.0
Installed GLM ───────────────────────── v1.3.1
Installed Combinatorics ─────────────── v0.7.0
Installed TableTraitsUtils ──────────── v1.0.0
Installed ShiftedArrays ─────────────── v0.5.0
Installed ParquetFiles ──────────────── v0.2.0
Installed Media ─────────────────────── v0.5.0
Installed BandedMatrices ────────────── v0.10.1
Installed NLopt ─────────────────────── v0.5.1
Installed FixedEffectModels ─────────── v0.8.2
Installed QueryOperators ────────────── v0.9.1
Installed Juno ──────────────────────── v0.7.2
Installed ArrayInterface ────────────── v1.2.1
Installed AbstractTrees ─────────────── v0.2.1
Installed FFTW ──────────────────────── v0.3.0
Installed DataValues ────────────────── v0.4.12
Installed Revise ────────────────────── v2.1.6
Installed GeometryTypes ─────────────── v0.7.6
Installed CSVFiles ──────────────────── v0.16.0
Installed PlotUtils ─────────────────── v0.5.8
Installed MacroTools ────────────────── v0.5.1
Installed Flux ──────────────────────── v0.8.3
Installed Missings ──────────────────── v0.4.2
Installed Inflate ───────────────────── v0.1.1
Installed LineSearches ──────────────── v7.0.1
Installed Contour ───────────────────── v0.5.1
Installed DataFrames ────────────────── v0.19.1
Installed MemPool ───────────────────── v0.2.0
Installed ReadStat ──────────────────── v0.4.1
Installed Colors ────────────────────── v0.9.6
Installed StatsFuns ─────────────────── v0.8.0
Installed BlackBoxOptim ─────────────── v0.5.0
Installed ExponentialUtilities ──────── v1.5.1
Installed Measures ──────────────────── v0.3.0
Installed VegaLite ──────────────────── v0.7.0
Installed Requires ──────────────────── v0.5.2
Installed FeatherFiles ──────────────── v0.8.1
Installed Snappy ────────────────────── v0.3.0
Installed RDatasets ─────────────────── v0.6.3
Installed FeatherLib ────────────────── v0.2.0
Installed ExcelFiles ────────────────── v1.0.0
Installed GenericSVD ────────────────── v0.2.1
Installed IterableTables ────────────── v0.11.0
Installed JuMP ──────────────────────── v0.20.0
Installed JuliaInterpreter ──────────── v0.6.1
Installed TextParse ─────────────────── v0.9.1
Installed NNlib ─────────────────────── v0.6.0
Installed Calculus ──────────────────── v0.4.1
Installed RData ─────────────────────── v0.6.2
Installed TableShowUtils ────────────── v0.2.5
Installed RegressionTables ──────────── v0.2.2
Installed DataStructures ────────────── v0.15.0
Installed IterativeSolvers ──────────── v0.8.1
Installed PkgTemplates ──────────────── v0.6.2
Installed XLSX ──────────────────────── v0.5.5
Installed FixedPointNumbers ─────────── v0.6.1
Installed FillArrays ────────────────── v0.6.4
Installed Crayons ───────────────────── v4.0.0
Installed TranscodingStreams ────────── v0.9.5
Installed CodecZlib ─────────────────── v0.5.2
Installed SparseDiffTools ───────────── v0.8.0
Installed JSON ──────────────────────── v0.20.0
Installed Mocking ───────────────────── v0.7.0
Installed DSP ───────────────────────── v0.6.0
Installed StatsModels ───────────────── v0.6.3
Installed DataFramesMeta ────────────── v0.5.0
Installed QuadGK ────────────────────── v2.1.0
Installed MathOptInterface ──────────── v0.9.2
Installed Primes ────────────────────── v0.4.0
Installed Distances ─────────────────── v0.8.2
Installed PositiveFactorizations ────── v0.2.2
Installed SpecialFunctions ──────────── v0.7.2
Installed ProgressMeter ─────────────── v1.0.0
Installed FastClosures ──────────────── v0.3.1
Installed Optim ─────────────────────── v0.19.1
Installed BlockBandedMatrices ───────── v0.4.6
Installed CommonSubexpressions ──────── v0.2.0
Installed NearestNeighbors ──────────── v0.4.3
Installed Arrow ─────────────────────── v0.2.3
Installed FixedEffects ──────────────── v0.1.2
Installed Adapt ─────────────────────── v1.0.0
Installed Tokenize ──────────────────── v0.5.6
Installed AxisAlgorithms ────────────── v1.0.0
Installed PooledArrays ──────────────── v0.5.2
Installed Reexport ──────────────────── v0.2.0
Installed JSONSchema ────────────────── v0.1.1
Installed StringEncodings ───────────── v0.3.1
Installed TimerOutputs ──────────────── v0.5.0
Installed Krylov ────────────────────── v0.3.0
Installed Rmath ─────────────────────── v0.5.0
Installed LinearMaps ────────────────── v2.5.1
Installed VertexSafeGraphs ──────────── v0.1.0
Installed Observables ───────────────── v0.2.3
Installed IterTools ─────────────────── v1.2.0
Installed Tables ────────────────────── v0.2.11
Installed FilePaths ─────────────────── v0.8.0
Installed Parquet ───────────────────── v0.3.0
Installed DiffRules ─────────────────── v0.0.10
Installed Roots ─────────────────────── v0.8.1
Installed DiffEqDiffTools ───────────── v0.14.0
Installed Distributions ─────────────── v0.21.0
Installed FastGaussQuadrature ───────── v0.3.3
Installed FFMPEG ────────────────────── v0.2.2
Installed TimeZones ─────────────────── v0.10.0
Installed LinearOperators ───────────── v0.5.4
Installed RecursiveArrayTools ───────── v0.18.6
Installed CodeTracking ──────────────── v0.5.8
Installed NaNMath ───────────────────── v0.3.2
Installed Queryverse ────────────────── v0.3.1
Installed SimpleTraits ──────────────── v0.9.0
Installed Quadmath ──────────────────── v0.5.0
Installed Parameters ────────────────── v0.10.3
Installed SortingAlgorithms ─────────── v0.3.1
Installed Query ─────────────────────── v0.12.1
Installed BenchmarkTools ────────────── v0.4.2
Installed EzXML ─────────────────────── v0.9.4
Installed CPUTime ───────────────────── v1.0.0
Installed ZygoteRules ───────────────── v0.1.0
Installed Formatting ────────────────── v0.4.0
Installed MatrixFactorizations ──────── v0.1.0
Installed ColorTypes ────────────────── v0.8.0
Installed ArnoldiMethod ─────────────── v0.0.4
Installed PlotThemes ────────────────── v0.3.0
Installed Ipopt ─────────────────────── v0.6.0
Installed Arpack ────────────────────── v0.3.1
Installed Showoff ───────────────────── v0.3.1
Installed AbstractFFTs ──────────────── v0.4.1
Installed Mustache ──────────────────── v0.5.13
Installed StatsBase ─────────────────── v0.31.0
Installed ExcelReaders ──────────────── v0.11.0
Installed GenericSchur ──────────────── v0.2.3
Installed Polynomials ───────────────── v0.5.2
Installed IRTools ───────────────────── v0.2.3
Installed Plots ─────────────────────── v0.26.3
Installed DataValueInterfaces ───────── v1.0.0
Installed InvertedIndices ───────────── v1.0.0
Installed CSTParser ─────────────────── v0.6.2
Installed Widgets ───────────────────── v0.6.2
Installed MathProgBase ──────────────── v0.7.7
Installed PyCall ────────────────────── v1.91.2
Installed KernelDensity ─────────────── v0.5.1
Installed FilePathsBase ─────────────── v0.6.2
Installed FlatBuffers ───────────────── v0.5.3
Installed RecipesBase ───────────────── v0.7.0
Installed WeakRefStrings ────────────── v0.6.1
Installed StatFiles ─────────────────── v0.8.0
Installed LaTeXStrings ──────────────── v1.0.3
Installed StatsPlots ────────────────── v0.12.0
Installed Expectations ──────────────── v1.1.0
Installed Ratios ────────────────────── v0.3.1
Installed LightGraphs ───────────────── v1.3.0
Installed StaticArrays ──────────────── v0.11.0
Installed DiffResults ───────────────── v0.0.4
Installed ZipFile ───────────────────── v0.8.3
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed Interpolations ────────────── v0.12.2
Installed Thrift ────────────────────── v0.6.0
Installed CategoricalArrays ─────────── v0.5.5
Installed NLsolve ───────────────────── v4.0.0
Installed WoodburyMatrices ──────────── v0.4.1
Installed LazyArrays ────────────────── v0.10.0
Installed Dierckx ───────────────────── v0.4.1
Installed Clustering ────────────────── v0.13.3
Installed Nullables ─────────────────── v0.0.8
Installed FileIO ────────────────────── v1.0.7
Installed GR ────────────────────────── v0.40.0
Building Electron ────────→ `/opt/julia/packages/Electron/wL84D/deps/build.log`
Building NodeJS ──────────→ `/opt/julia/packages/NodeJS/rx0mH/deps/build.log`
Building NLopt ───────────→ `/opt/julia/packages/NLopt/eqN9a/deps/build.log`
Building FFTW ────────────→ `/opt/julia/packages/FFTW/2okGQ/deps/build.log`
Building VegaLite ────────→ `/opt/julia/packages/VegaLite/sHyyT/deps/build.log`
Building StringEncodings ─→ `/opt/julia/packages/StringEncodings/ICuGB/deps/build.log`
[91m┌ Error: Error building `VegaLite`:
│
│ > [email protected] install /opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas
│ > node-pre-gyp install --fallback-to-build
│
│ node-pre-gyp WARN Using needle for node-pre-gyp https download
│ node-pre-gyp WARN Pre-built binaries not installable for [email protected] and [email protected] (node-v64 ABI, glibc) (falling back to source compile with node-gyp)
│ node-pre-gyp WARN Hit error EACCES: permission denied, mkdir '/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build'
│ gyp WARN EACCES user "undefined" does not have permission to access the dev dir "/home/jovyan/.node-gyp/10.15.0"
│ gyp WARN EACCES attempting to reinstall using temporary dev dir "/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/.node-gyp"
│ gyp WARN install got an error, rolling back install
│ gyp WARN install got an error, rolling back install
│ gyp ERR! configure error
│ gyp ERR! stack Error: EACCES: permission denied, mkdir '/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/.node-gyp'
│ gyp ERR! System Linux 4.4.181-1.el7.elrepo.x86_64
│ gyp ERR! command "/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/bin/node" "/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "configure" "--fallback-to-build" "--module=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release/canvas.node" "--module_name=canvas" "--module_path=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release" "--napi_version=3" "--node_abi_napi=napi" "--napi_build_version=0" "--node_napi_label=node-v64"
│ gyp ERR! cwd /opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas
│ gyp ERR! node -v v10.15.0
│ gyp ERR! node-gyp -v v3.8.0
│ gyp ERR! not ok
│ node-pre-gyp ERR! build error
│ node-pre-gyp ERR! stack Error: Failed to execute '/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/bin/node /opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js configure --fallback-to-build --module=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release/canvas.node --module_name=canvas --module_path=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release --napi_version=3 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v64' (1)
│ node-pre-gyp ERR! stack at ChildProcess.<anonymous> (/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/node-pre-gyp/lib/util/compile.js:83:29)
│ node-pre-gyp ERR! stack at ChildProcess.emit (events.js:182:13)
│ node-pre-gyp ERR! stack at maybeClose (internal/child_process.js:962:16)
│ node-pre-gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:251:5)
│ node-pre-gyp ERR! System Linux 4.4.181-1.el7.elrepo.x86_64
│ node-pre-gyp ERR! command "/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/bin/node" "/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/.bin/node-pre-gyp" "install" "--fallback-to-build"
│ node-pre-gyp ERR! cwd /opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas
│ node-pre-gyp ERR! node -v v10.15.0
│ node-pre-gyp ERR! node-pre-gyp -v v0.11.0
│ node-pre-gyp ERR! not ok
│ Failed to execute '/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/bin/node /opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js configure --fallback-to-build --module=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release/canvas.node --module_name=canvas --module_path=/opt/julia/packages/VegaLite/sHyyT/deps/node_modules/canvas/build/Release --napi_version=3 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v64' (1)
│ npm ERR! code ELIFECYCLE
│ npm ERR! errno 1
│ npm ERR! [email protected] install: `node-pre-gyp install --fallback-to-build`
│ npm ERR! Exit status 1
│ npm ERR!
│ npm ERR! Failed at the [email protected] install script.
│ npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
│
│ npm ERR! A complete log of this run can be found in:
│ npm ERR! /home/jovyan/.npm/_logs/2019-09-16T19_35_02_098Z-debug.log
│ ERROR: LoadError: failed process: Process(setenv(`/opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/bin/node /opt/julia/packages/NodeJS/rx0mH/deps/bin/node-v10.15.0-linux-x64/lib/node_modules/npm/bin/npm-cli.js install --scripts-prepend-node-path=true --production --no-package-lock --no-optional`; dir="/opt/julia/packages/VegaLite/sHyyT/deps"), ProcessExited(1)) [1]
│
│ Stacktrace:
│ [1] pipeline_error at ./process.jl:813 [inlined]
│ [2] #run#536(::Bool, ::typeof(run), ::Cmd) at ./process.jl:728
│ [3] run(::Cmd) at ./process.jl:726
│ [4] top-level scope at /opt/julia/packages/VegaLite/sHyyT/deps/build.jl:4
│ [5] include at ./boot.jl:328 [inlined]
│ [6] include_relative(::Module, ::String) at ./loading.jl:1094
│ [7] include(::Module, ::String) at ./Base.jl:31
│ [8] include(::String) at ./client.jl:431
│ [9] top-level scope at none:5
│ in expression starting at /opt/julia/packages/VegaLite/sHyyT/deps/build.jl:4
└ @ Pkg.Operations /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.2/Pkg/src/backwards_compatible_isolation.jl:647
[0m Building ReadStat ────────→ `/opt/julia/packages/ReadStat/JnXAZ/deps/build.log`
Building Snappy ──────────→ `/opt/julia/packages/Snappy/O2CHr/deps/build.log`
Building CodecZlib ───────→ `/opt/julia/packages/CodecZlib/9jDi1/deps/build.log`
Building SpecialFunctions → `/opt/julia/packages/SpecialFunctions/fvheQ/deps/build.log`
Building Rmath ───────────→ `/opt/julia/packages/Rmath/Py9gH/deps/build.log`
Building EzXML ───────────→ `/opt/julia/packages/EzXML/G0JeY/deps/build.log`
Building TimeZones ───────→ `/opt/julia/packages/TimeZones/UXytc/deps/build.log`
Building FFMPEG ──────────→ `/opt/julia/packages/FFMPEG/9JQpZ/deps/build.log`
Building Ipopt ───────────→ `/opt/julia/packages/Ipopt/UXSdI/deps/build.log`
Building Arpack ──────────→ `/opt/julia/packages/Arpack/cu5By/deps/build.log`
Building GR ──────────────→ `/opt/julia/packages/GR/TMylY/deps/build.log`
Building Plots ───────────→ `/opt/julia/packages/Plots/h3o4c/deps/build.log`
Building PyCall ──────────→ `/opt/julia/packages/PyCall/ttONZ/deps/build.log`
Building ZipFile ─────────→ `/opt/julia/packages/ZipFile/oD4uG/deps/build.log`
Building Thrift ──────────→ `/opt/julia/packages/Thrift/hqiAN/deps/build.log`
Building Dierckx ─────────→ `/opt/julia/packages/Dierckx/9SY4A/deps/build.log`
Precompiling project...
Precompiling ForwardDiff
Precompiling DataVoyager
Precompiling RegressionTables
Precompiling Zygote
Precompiling Expectations
Precompiling LeastSquaresOptim
Precompiling SparseDiffTools
Precompiling GR
Precompiling Krylov
Precompiling Queryverse
Precompiling IterativeSolvers
Precompiling KernelDensity
Precompiling ProgressMeter
Precompiling Revise
Precompiling BenchmarkTools
Precompiling StatsPlots
Precompiling ExponentialUtilities
Precompiling DataFramesMeta
Precompiling Dierckx
Precompiling Flux
Precompiling BlackBoxOptim
Precompiling LinearMaps
Precompiling JuMP
Precompiling Roots
Precompiling Ipopt
Precompiling NLopt
Precompiling LaTeXStrings
Precompiling PkgTemplates
Precompiling RDatasets
Precompiling NLsolve
Precompiling QuantEcon
[1mInfo[0m Project name is quantecon-notebooks-julia, version is 0.3.0
Resolving package versions...
Installed DiffEqJump ────────────── v6.1.1
Installed DiffEqCallbacks ───────── v2.5.2
Installed PDMats ────────────────── v0.9.10
Installed FixedPolynomials ──────── v0.4.0
Installed DiffEqBase ────────────── v5.20.1
Installed DifferentialEquations ─── v5.3.1
Installed DiffEqOperators ───────── v4.1.0
Installed StochasticDiffEq ──────── v6.8.0
Installed MultiScaleArrays ──────── v1.4.0
Installed StaticPolynomials ─────── v1.3.2
Installed MultivariatePolynomials ─ v0.3.2
Installed DoubleFloats ──────────── v0.9.9
Installed LsqFit ────────────────── v0.8.1
Installed ChunkedArrays ─────────── v0.1.1
Installed RandomNumbers ─────────── v1.3.0
Installed DiffEqBiological ──────── v3.9.1
Installed DiffEqNoiseProcess ────── v3.3.1
Installed BoundaryValueDiffEq ───── v2.3.0
Installed LearnBase ─────────────── v0.2.2
Installed VectorizedRoutines ────── v0.1.0
Installed DynamicPolynomials ────── v0.3.3
Installed ProjectiveVectors ─────── v0.2.2
Installed OptimBase ─────────────── v2.0.0
Installed DiffEqFinancial ───────── v2.1.0
Installed DiffEqParamEstim ──────── v1.8.0
Installed PoissonRandom ─────────── v0.4.0
Installed PenaltyFunctions ──────── v0.1.2
Installed FixedEffects ──────────── v0.2.0
Installed DiffEqPhysics ─────────── v3.2.0
Installed DiffEqDevTools ────────── v2.14.1
Installed DiffEqUncertainty ─────── v1.1.0
Installed DimensionalPlotRecipes ── v0.2.0
Installed MixedSubdivisions ─────── v0.3.2
Installed Sundials ──────────────── v3.7.0
Installed HomotopyContinuation ──── v1.1.1
Installed ResettableStacks ──────── v0.6.0
Installed DocStringExtensions ───── v0.8.0
Installed SymEngine ─────────────── v0.7.0
Installed TreeViews ─────────────── v0.3.0
Installed FunctionWrappers ──────── v1.0.0
Installed DiffEqPDEBase ─────────── v0.4.0
Installed RecursiveFactorization ── v0.1.0
Installed MuladdMacro ───────────── v0.2.1
Installed EllipsisNotation ──────── v0.4.0
Installed ElasticArrays ─────────── v0.4.0
Installed DiffEqMonteCarlo ──────── v0.15.1
Installed ParameterizedFunctions ── v4.2.1
Installed DelayDiffEq ───────────── v5.14.0
Installed DiffEqSensitivity ─────── v3.3.2
Installed SteadyStateDiffEq ─────── v1.5.0
Installed PrettyTables ──────────── v0.5.1
Installed OrdinaryDiffEq ────────── v5.14.0
Updating `~/Project.toml`
[2b5f629d] + DiffEqBase v5.20.1
[459566f4] + DiffEqCallbacks v2.5.2
[c894b116] + DiffEqJump v6.1.1
[9fdde737] + DiffEqOperators v4.1.0
[0c46a032] + DifferentialEquations v5.3.1
[82899510] + IteratorInterfaceExtensions v1.0.0
[6fe1bfb0] + OffsetArrays v0.11.1
[789caeaf] + StochasticDiffEq v6.8.0
Updating `~/Manifest.toml`
[764a87c0] + BoundaryValueDiffEq v2.3.0
[8bab3169] + ChunkedArrays v0.1.1
[bcd4f6db] + DelayDiffEq v5.14.0
[2b5f629d] + DiffEqBase v5.20.1
[eb300fae] + DiffEqBiological v3.9.1
[459566f4] + DiffEqCallbacks v2.5.2
[f3b72e0c] + DiffEqDevTools v2.14.1
[5a0ffddc] + DiffEqFinancial v2.1.0
[c894b116] + DiffEqJump v6.1.1
[78ddff82] + DiffEqMonteCarlo v0.15.1
[77a26b50] + DiffEqNoiseProcess v3.3.1
[9fdde737] + DiffEqOperators v4.1.0
[34035eb4] + DiffEqPDEBase v0.4.0
[1130ab10] + DiffEqParamEstim v1.8.0
[055956cb] + DiffEqPhysics v3.2.0
[41bf760c] + DiffEqSensitivity v3.3.2
[ef61062a] + DiffEqUncertainty v1.1.0
[0c46a032] + DifferentialEquations v5.3.1
[c619ae07] + DimensionalPlotRecipes v0.2.0
[ffbed154] + DocStringExtensions v0.8.0
[497a8b3b] ↑ DoubleFloats v0.9.8 ⇒ v0.9.9
[7c1d4256] + DynamicPolynomials v0.3.3
[fdbdab4c] + ElasticArrays v0.4.0
[da5c29d0] + EllipsisNotation v0.4.0
[c8885935] ↑ FixedEffects v0.1.2 ⇒ v0.2.0
[3dd14ad9] + FixedPolynomials v0.4.0
[069b7b12] + FunctionWrappers v1.0.0
[f213a82b] + HomotopyContinuation v1.1.1
[7f8f8fb0] + LearnBase v0.2.2
[2fda8390] + LsqFit v0.8.1
[291d046c] + MixedSubdivisions v0.3.2
[46d2c3a1] + MuladdMacro v0.2.1
[f9640e96] + MultiScaleArrays v1.4.0
[102ac46a] + MultivariatePolynomials v0.3.2
[87e2bd06] + OptimBase v2.0.0
[1dea7af3] + OrdinaryDiffEq v5.14.0
[90014a1f] ↑ PDMats v0.9.9 ⇒ v0.9.10
[65888b18] + ParameterizedFunctions v4.2.1
[06bb1623] + PenaltyFunctions v0.1.2
[e409e4f3] + PoissonRandom v0.4.0
[08abe8d2] + PrettyTables v0.5.1
[01f381cc] + ProjectiveVectors v0.2.2
[e6cf234a] + RandomNumbers v1.3.0
[f2c3362d] + RecursiveFactorization v0.1.0
[ae5879a3] + ResettableStacks v0.6.0
[62e018b1] + StaticPolynomials v1.3.2
[9672c7b4] + SteadyStateDiffEq v1.5.0
[789caeaf] + StochasticDiffEq v6.8.0
[c3572dad] + Sundials v3.7.0
[123dc426] + SymEngine v0.7.0
[a2a6695c] + TreeViews v0.3.0
[0e69188a] + VectorizedRoutines v0.1.0
Building Sundials ─→ `/opt/julia/packages/Sundials/CRi5j/deps/build.log`
Building SymEngine → `/opt/julia/packages/SymEngine/zSUGO/deps/build.log`
Activating environment at `/opt/julia/environments/v1.2/Project.toml`
Resolving package versions...
Installed SparseDiffTools ─────── v0.9.0
Installed DiffEqJump ──────────── v6.2.1
Installed LeastSquaresOptim ───── v0.7.4
Installed Expectations ────────── v1.1.1
Installed CategoricalArrays ───── v0.6.0
Installed DataFrames ──────────── v0.19.4
Installed FixedEffectModels ───── v0.7.4
Installed StochasticDiffEq ────── v6.11.0
Installed StatsModels ─────────── v0.5.0
Installed Revise ──────────────── v2.1.10
Installed FastGaussQuadrature ─── v0.4.0
Installed BenchmarkTools ──────── v0.4.3
Installed Distributions ───────── v0.21.1
Installed StatsBase ───────────── v0.32.0
Installed Optim ───────────────── v0.19.3
Installed Flux ────────────────── v0.9.0
Installed GR ──────────────────── v0.41.0
Installed QuadGK ──────────────── v2.0.3
Installed DiffEqCallbacks ─────── v2.8.0
Installed Parameters ──────────── v0.12.0
Installed DiffEqBase ──────────── v6.2.2
Installed GLM ─────────────────── v1.1.1
Installed DifferentialEquations ─ v6.8.0
Installed NLsolve ─────────────── v4.1.0
Installed Query ───────────────── v0.12.2
Installed GPUArrays ───────────── v1.0.2
Installed MultiScaleArrays ────── v1.5.0
Installed Roots ───────────────── v0.8.3
Installed Calculus ────────────── v0.5.0
Installed LLVM ────────────────── v1.3.0
Installed JuliaInterpreter ────── v0.7.2
Installed DiffEqFinancial ─────── v2.2.1
Installed CEnum ───────────────── v0.2.0
Installed DataStructures ──────── v0.17.0
Installed RecursiveArrayTools ─── v1.0.2
Installed DiffEqDiffTools ─────── v1.3.0
Installed CUDAnative ──────────── v2.3.1
Installed CUDAdrv ─────────────── v3.1.0
Installed CuArrays ────────────── v1.2.1
Installed CUDAapi ─────────────── v1.1.0
Installed DelayDiffEq ─────────── v5.16.0
Installed OrdinaryDiffEq ──────── v5.17.0
Updating `/opt/julia/environments/v1.2/Project.toml`
[aae01518] + BandedMatrices v0.10.1
[6e4b80f9] + BenchmarkTools v0.4.3
[a134a8b2] + BlackBoxOptim v0.5.0
[324d7699] + CategoricalArrays v0.6.0
[34da2185] + Compat v2.1.0
[a93c6f00] + DataFrames v0.19.4
[1313f7d8] + DataFramesMeta v0.5.0
[5721bf48] + DataVoyager v0.3.1
[39dd38d3] + Dierckx v0.4.1
[2b5f629d] + DiffEqBase v6.2.2
[459566f4] + DiffEqCallbacks v2.8.0
[c894b116] + DiffEqJump v6.2.1
[9fdde737] + DiffEqOperators v4.1.0
[0c46a032] + DifferentialEquations v6.8.0
[31c24e10] + Distributions v0.21.1
[2fe49d83] + Expectations v1.1.1
[d4d017d3] + ExponentialUtilities v1.5.1
[442a2c76] + FastGaussQuadrature v0.4.0
[1a297f60] + FillArrays v0.6.4
[9d5cd8c9] + FixedEffectModels v0.7.4
[587475ba] + Flux v0.9.0
[f6369f11] + ForwardDiff v0.10.3
[38e38edf] + GLM v1.1.1
[28b8d3ca] + GR v0.41.0
[a98d9a8b] + Interpolations v0.12.2
[b6b21f68] + Ipopt v0.6.0
[42fd0dbc] + IterativeSolvers v0.8.1
[82899510] + IteratorInterfaceExtensions v1.0.0
[4076af6c] + JuMP v0.20.0
[5ab0869b] + KernelDensity v0.5.1
[ba0b0d4f] + Krylov v0.3.0
[b964fa9f] + LaTeXStrings v1.0.3
[0fc2ff8b] + LeastSquaresOptim v0.7.4
[7a12625a] + LinearMaps v2.5.1
[76087f3c] + NLopt v0.5.1
[2774e3e8] + NLsolve v4.1.0
[6fe1bfb0] + OffsetArrays v0.11.1
[429524aa] + Optim v0.19.3
[d96e819e] + Parameters v0.12.0
[14b8a8f1] + PkgTemplates v0.6.2
[91a5bcdd] + Plots v0.26.3
[f27b6e38] + Polynomials v0.5.2
[92933f4c] + ProgressMeter v1.0.0
[1fd47b50] + QuadGK v2.0.3
[fcd29c91] + QuantEcon v0.16.2
[1a8c2f83] + Query v0.12.2
[612083be] + Queryverse v0.3.1
[ce6b1742] + RDatasets v0.6.3
[d519eb52] + RegressionTables v0.2.2
[295af30f] + Revise v2.1.10
[f2b01f46] + Roots v0.8.3
[47a9eef4] + SparseDiffTools v0.9.0
[90137ffa] + StaticArrays v0.11.0
[2913bbd2] + StatsBase v0.32.0
[3eaba693] + StatsModels v0.5.0
[f3b207a7] + StatsPlots v0.12.0
[789caeaf] + StochasticDiffEq v6.11.0
[112f6efa] + VegaLite v0.7.0
[e88e6eb3] + Zygote v0.3.4
[37e2e46d] + LinearAlgebra
[9a3f8284] + Random
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
Updating `/opt/julia/environments/v1.2/Manifest.toml`
[621f4979] + AbstractFFTs v0.4.1
[1520ce14] + AbstractTrees v0.2.1
[79e6a3ab] + Adapt v1.0.0
[ec485272] + ArnoldiMethod v0.0.4
[7d9fca2a] + Arpack v0.3.1
[4fba245c] + ArrayInterface v1.2.1
[69666777] + Arrow v0.2.3
[13072b0f] + AxisAlgorithms v1.0.0
[aae01518] + BandedMatrices v0.10.1
[6e4b80f9] + BenchmarkTools v0.4.3
[a134a8b2] + BlackBoxOptim v0.5.0
[8e7c35d0] + BlockArrays v0.9.1
[ffab5731] + BlockBandedMatrices v0.4.6
[764a87c0] + BoundaryValueDiffEq v2.3.0
[fa961155] + CEnum v0.2.0
[a9c8d775] + CPUTime v1.0.0
[00ebfdb7] + CSTParser v0.6.2
[336ed68f] + CSV v0.5.12
[5d742f6a] + CSVFiles v0.16.0
[3895d2a7] + CUDAapi v1.1.0
[c5f51814] + CUDAdrv v3.1.0
[be33ccc6] + CUDAnative v2.3.1
[49dc2e85] + Calculus v0.5.0
[324d7699] + CategoricalArrays v0.6.0
[aaaa29a8] + Clustering v0.13.3
[da1fd8a2] + CodeTracking v0.5.8
[944b1d66] + CodecZlib v0.5.2
[3da002f7] + ColorTypes v0.8.0
[5ae59095] + Colors v0.9.6
[861a8166] + Combinatorics v0.7.0
[bbf7d656] + CommonSubexpressions v0.2.0
[d38c429a] + Contour v0.5.1
[a8cc5b0e] + Crayons v4.0.0
[3a865a2d] + CuArrays v1.2.1
[717857b8] + DSP v0.6.0
[9a962f9c] + DataAPI v1.0.1
[a93c6f00] + DataFrames v0.19.4
[1313f7d8] + DataFramesMeta v0.5.0
[864edb3b] + DataStructures v0.17.0
[e2d170a0] + DataValueInterfaces v1.0.0
[e7dc6d0d] + DataValues v0.4.12
[5721bf48] + DataVoyager v0.3.1
[bcd4f6db] + DelayDiffEq v5.16.0
[39dd38d3] + Dierckx v0.4.1
[2b5f629d] + DiffEqBase v6.2.2
[459566f4] + DiffEqCallbacks v2.8.0
[01453d9d] + DiffEqDiffTools v1.3.0
[5a0ffddc] + DiffEqFinancial v2.2.1
[c894b116] + DiffEqJump v6.2.1
[77a26b50] + DiffEqNoiseProcess v3.3.1
[9fdde737] + DiffEqOperators v4.1.0
[055956cb] + DiffEqPhysics v3.2.0
[163ba53b] + DiffResults v0.0.4
[b552c78f] + DiffRules v0.0.10
[0c46a032] + DifferentialEquations v6.8.0
[c619ae07] + DimensionalPlotRecipes v0.2.0
[b4f34e82] + Distances v0.8.2
[31c24e10] + Distributions v0.21.1
[ffbed154] + DocStringExtensions v0.8.0
[497a8b3b] + DoubleFloats v0.9.9
[a1bb12fb] + Electron v1.0.0
[89b67f3b] + ExcelFiles v1.0.0
[c04bee98] + ExcelReaders v0.11.0
[2fe49d83] + Expectations v1.1.1
[d4d017d3] + ExponentialUtilities v1.5.1
[8f5d6c58] + EzXML v0.9.4
[c87230d0] + FFMPEG v0.2.2
[7a1cc6ca] + FFTW v0.3.0
[9aa1b823] + FastClosures v0.3.1
[442a2c76] + FastGaussQuadrature v0.4.0
[b675d258] + FeatherFiles v0.8.1
[409f5150] + FeatherLib v0.2.0
[5789e2e9] + FileIO v1.0.7
[8fc22ac5] + FilePaths v0.8.0
[48062228] + FilePathsBase v0.6.2
[1a297f60] + FillArrays v0.6.4
[9d5cd8c9] + FixedEffectModels v0.7.4
[c8885935] + FixedEffects v0.2.0
[53c48c17] + FixedPointNumbers v0.6.1
[53afe959] + FlatBuffers v0.5.3
[587475ba] + Flux v0.9.0
[59287772] + Formatting v0.4.0
[f6369f11] + ForwardDiff v0.10.3
[069b7b12] + FunctionWrappers v1.0.0
[38e38edf] + GLM v1.1.1
[0c68f7d7] + GPUArrays v1.0.2
[28b8d3ca] + GR v0.41.0
[01680d73] + GenericSVD v0.2.1
[c145ed77] + GenericSchur v0.2.3
[4d00f742] + GeometryTypes v0.7.6
[7869d1d1] + IRTools v0.2.3
[d25df0c9] + Inflate v0.1.1
[a98d9a8b] + Interpolations v0.12.2
[41ab1584] + InvertedIndices v1.0.0
[b6b21f68] + Ipopt v0.6.0
[c8e1da08] + IterTools v1.2.0
[1c8ee90f] + IterableTables v0.11.0
[42fd0dbc] + IterativeSolvers v0.8.1
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] ↓ JSON v0.21.0 ⇒ v0.20.0
[7d188eb4] + JSONSchema v0.1.1
[4076af6c] + JuMP v0.20.0
[aa1ae85d] + JuliaInterpreter v0.7.2
[e5e0dc1b] + Juno v0.7.2
[5ab0869b] + KernelDensity v0.5.1
[ba0b0d4f] + Krylov v0.3.0
[929cbde3] + LLVM v1.3.0
[b964fa9f] + LaTeXStrings v1.0.3
[5078a376] + LazyArrays v0.10.0
[0fc2ff8b] + LeastSquaresOptim v0.7.4
[093fc24a] + LightGraphs v1.3.0
[d3d80556] + LineSearches v7.0.1
[7a12625a] + LinearMaps v2.5.1
[5c8ed15e] + LinearOperators v0.5.4
[6f1432cf] + LoweredCodeUtils v0.3.8
[1914dd2f] + MacroTools v0.5.1
[b8f27783] + MathOptInterface v0.9.2
[fdba3010] + MathProgBase v0.7.7
[a3b82374] + MatrixFactorizations v0.1.0
[442fdcdd] + Measures v0.3.0
[e89f7d12] + Media v0.5.0
[f9f48841] + MemPool v0.2.0
[e1d29d7a] + Missings v0.4.2
[78c3b35d] + Mocking v0.7.0
[46d2c3a1] + MuladdMacro v0.2.1
[f9640e96] + MultiScaleArrays v1.5.0
[ffc61752] + Mustache v0.5.13
[d41bc354] + NLSolversBase v7.4.1
[76087f3c] + NLopt v0.5.1
[2774e3e8] + NLsolve v4.1.0
[872c559c] + NNlib v0.6.0
[77ba4419] + NaNMath v0.3.2
[b8a86587] + NearestNeighbors v0.4.3
[2bd173c7] + NodeJS v0.6.0
[4d1e1d77] + Nullables v0.0.8
[510215fc] + Observables v0.2.3
[6fe1bfb0] + OffsetArrays v0.11.1
[429524aa] + Optim v0.19.3
[1dea7af3] + OrdinaryDiffEq v5.17.0
[90014a1f] + PDMats v0.9.10
[d96e819e] ↑ Parameters v0.11.0 ⇒ v0.12.0
[626c502c] + Parquet v0.3.0
[46a55296] + ParquetFiles v0.2.0
[14b8a8f1] + PkgTemplates v0.6.2
[ccf2f8ad] + PlotThemes v0.3.0
[995b91a9] + PlotUtils v0.5.8
[91a5bcdd] + Plots v0.26.3
[e409e4f3] + PoissonRandom v0.4.0
[f27b6e38] + Polynomials v0.5.2
[2dfb63ee] + PooledArrays v0.5.2
[85a6dd25] + PositiveFactorizations v0.2.2
[27ebfcd6] + Primes v0.4.0
[92933f4c] + ProgressMeter v1.0.0
[3349acd9] + ProtoBuf v0.7.0
[438e738f] + PyCall v1.91.2
[1fd47b50] + QuadGK v2.0.3
[be4d8f0f] + Quadmath v0.5.0
[fcd29c91] + QuantEcon v0.16.2
[1a8c2f83] + Query v0.12.2
[2aef5ad7] + QueryOperators v0.9.1
[30ad73d7] + QueryTables v0.1.0
[612083be] + Queryverse v0.3.1
[df47a6cb] + RData v0.6.2
[ce6b1742] + RDatasets v0.6.3
[e6cf234a] + RandomNumbers v1.3.0
[c84ed2f1] + Ratios v0.3.1
[d71aba96] + ReadStat v0.4.1
[3cdcf5f2] + RecipesBase v0.7.0
[731186ca] + RecursiveArrayTools v1.0.2
[f2c3362d] + RecursiveFactorization v0.1.0
[189a3867] + Reexport v0.2.0
[d519eb52] + RegressionTables v0.2.2
[ae029012] + Requires v0.5.2
[ae5879a3] + ResettableStacks v0.6.0
[295af30f] + Revise v2.1.10
[79098fc4] + Rmath v0.5.0
[f2b01f46] + Roots v0.8.3
[992d4aef] + Showoff v0.3.1
[699a6c99] + SimpleTraits v0.9.0
[59d4ed8c] + Snappy v0.3.0
[a2af1166] + SortingAlgorithms v0.3.1
[47a9eef4] + SparseDiffTools v0.9.0
[d4ead438] + SpatialIndexing v0.1.2
[276daf66] + SpecialFunctions v0.7.2
[1463e38c] + StatFiles v0.8.0
[90137ffa] + StaticArrays v0.11.0
[2913bbd2] + StatsBase v0.32.0
[4c63d2b9] + StatsFuns v0.8.0
[3eaba693] + StatsModels v0.5.0
[f3b207a7] + StatsPlots v0.12.0
[9672c7b4] + SteadyStateDiffEq v1.5.0
[789caeaf] + StochasticDiffEq v6.11.0
[69024149] + StringEncodings v0.3.1
[c3572dad] + Sundials v3.7.0
[5e66a065] + TableShowUtils v0.2.5
[3783bdb8] + TableTraits v1.0.0
[382cd787] + TableTraitsUtils v1.0.0
[bd369af6] + Tables v0.2.11
[e0df1984] + TextParse v0.9.1
[8d9c9c80] + Thrift v0.6.0
[f269a46b] + TimeZones v0.10.0
[a759f4b9] + TimerOutputs v0.5.0
[0796e94c] + Tokenize v0.5.6
[9f7883ad] + Tracker v0.2.3
[3bb67fe8] + TranscodingStreams v0.9.5
[a2a6695c] + TreeViews v0.3.0
[112f6efa] + VegaLite v0.7.0
[19fa3120] + VertexSafeGraphs v0.1.0
[ea10d353] + WeakRefStrings v0.6.1
[cc8bc4a8] + Widgets v0.6.2
[efce3f68] + WoodburyMatrices v0.4.1
[fdbf4ff8] + XLSX v0.5.5
[a5390f91] + ZipFile v0.8.3
[e88e6eb3] + Zygote v0.3.4
[700de1a5] + ZygoteRules v0.1.0
[9fa8497b] + Future
[9abbd945] + Profile
[4607b0f0] + SuiteSparse
Building GR → `/opt/julia/packages/GR/ZI5OE/deps/build.log`
Activating environment at `~/Project.toml`
Removing intermediate container f076db851b12
---> b29fc56ff078
Step 23/44 : RUN julia -e "using Pkg; pkg\"add GR Plots StatsPlots DataFrames StatsPlots CSV PlotUtils GeometryTypes Tables PackageCompiler#sd-notomls CategoricalArrays IteratorInterfaceExtensions PooledArrays WeakRefStrings\""
---> Running in b3a5607de381
Updating registry at `/opt/julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
[?25l[2K[?25h Cloning git-repo `https://github.com/JuliaLang/PackageCompiler.jl.git`
[?25l Fetching: [> ] 0.0 %[2K[?25h Updating git-repo `https://github.com/JuliaLang/PackageCompiler.jl.git`
[?25l Fetching: [> ] 0.0 %[2K[?25h Resolving package versions...
Installed HTTPClient ────── v0.2.1
Installed WinRPM ────────── v0.4.2
Installed Libz ──────────── v1.0.0
Installed TextWrap ──────── v0.3.0
Installed LibCURL ───────── v0.5.2
Installed LibExpat ──────── v0.5.0
Installed BufferedStreams ─ v1.0.0
Installed ArgParse ──────── v0.6.2
Updating `/opt/julia/environments/v1.2/Project.toml`
[336ed68f] + CSV v0.5.12
[4d00f742] + GeometryTypes v0.7.6
[9b87118b] + PackageCompiler v0.6.4+ #sd-notomls (https://github.com/JuliaLang/PackageCompiler.jl.git)
[995b91a9] + PlotUtils v0.5.8
[2dfb63ee] + PooledArrays v0.5.2
[bd369af6] + Tables v0.2.11
[ea10d353] + WeakRefStrings v0.6.1
Updating `/opt/julia/environments/v1.2/Manifest.toml`
[c7e460c6] + ArgParse v0.6.2
[e1450e63] + BufferedStreams v1.0.0
[0862f596] + HTTPClient v0.2.1
[b27032c2] + LibCURL v0.5.2
[522f3ed2] + LibExpat v0.5.0
[2ec943e9] + Libz v1.0.0
[9b87118b] + PackageCompiler v0.6.4+ #sd-notomls (https://github.com/JuliaLang/PackageCompiler.jl.git)
[b718987f] + TextWrap v0.3.0
[c17dfb99] + WinRPM v0.4.2
Building LibCURL ────────→ `/opt/julia/packages/LibCURL/lWJxD/deps/build.log`
Building WinRPM ─────────→ `/opt/julia/packages/WinRPM/Y9QdZ/deps/build.log`
Building PackageCompiler → `/opt/julia/packages/PackageCompiler/bANkt/deps/build.log`
Removing intermediate container b3a5607de381
---> 5decb7c3cd60
Step 24/44 : RUN julia -e "using Pkg; pkg\"add IJulia Images DualNumbers Unitful Compat LaTeXStrings UnicodePlots DataValues IterativeSolvers VisualRegressionTests\""
---> Running in 010fd3acca18
Updating registry at `/opt/julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
[?25l[2K[?25h Resolving package versions...
Installed CatIndices ──────────────── v0.2.0
Installed DualNumbers ─────────────── v0.6.2
Installed MappedArrays ────────────── v0.2.1
Installed ComputationalResources ──── v0.3.0
Installed Images ──────────────────── v0.18.0
Installed Unitful ─────────────────── v0.17.0
Installed UnicodePlots ────────────── v1.1.0
Installed VisualRegressionTests ───── v0.3.1
Installed Graphics ────────────────── v0.4.0
Installed RangeArrays ─────────────── v0.3.1
Installed ImageTransformations ────── v0.8.0
Installed ImageAxes ───────────────── v0.6.1
Installed IdentityRanges ──────────── v0.3.0
Installed ImageMorphology ─────────── v0.2.4
Installed IntervalSets ────────────── v0.3.2
Installed ImageCore ───────────────── v0.8.5
Installed ImageShow ───────────────── v0.2.0
Installed QuartzImageIO ───────────── v0.6.0
Installed IndirectArrays ──────────── v0.5.0
Installed ImageDistances ──────────── v0.2.4
Installed Rotations ───────────────── v0.12.0
Installed ImageMagick ─────────────── v0.7.5
Installed CoordinateTransformations ─ v0.5.0
Installed ColorVectorSpace ────────── v0.7.1
Installed ImageMetadata ───────────── v0.7.2
Installed PaddedViews ─────────────── v0.4.2
Installed CustomUnitRanges ────────── v0.2.0
Installed TiledIteration ──────────── v0.2.3
Installed FFTViews ────────────────── v0.3.0
Installed ImageFiltering ──────────── v0.6.5
Installed AxisArrays ──────────────── v0.3.3
Updating `/opt/julia/environments/v1.2/Project.toml`
[e7dc6d0d] + DataValues v0.4.12
[fa6b7ba4] + DualNumbers v0.6.2
[916415d5] + Images v0.18.0
[b8865327] + UnicodePlots v1.1.0
[1986cc42] + Unitful v0.17.0
[34922c18] + VisualRegressionTests v0.3.1
Updating `/opt/julia/environments/v1.2/Manifest.toml`
[39de3d68] + AxisArrays v0.3.3
[aafaddc9] + CatIndices v0.2.0
[c3611d14] + ColorVectorSpace v0.7.1
[ed09eef8] + ComputationalResources v0.3.0
[150eb455] + CoordinateTransformations v0.5.0
[dc8bdbbb] + CustomUnitRanges v0.2.0
[fa6b7ba4] + DualNumbers v0.6.2
[4f61f5a4] + FFTViews v0.3.0
[a2bd30eb] + Graphics v0.4.0
[bbac6d45] + IdentityRanges v0.3.0
[2803e5a7] + ImageAxes v0.6.1
[a09fc81d] + ImageCore v0.8.5
[51556ac3] + ImageDistances v0.2.4
[6a3955dd] + ImageFiltering v0.6.5
[6218d12a] + ImageMagick v0.7.5
[bc367c6b] + ImageMetadata v0.7.2
[787d08f9] + ImageMorphology v0.2.4
[4e3cecfd] + ImageShow v0.2.0
[02fcd773] + ImageTransformations v0.8.0
[916415d5] + Images v0.18.0
[9b13fd28] + IndirectArrays v0.5.0
[8197267c] + IntervalSets v0.3.2
[dbb5928d] + MappedArrays v0.2.1
[5432bcbf] + PaddedViews v0.4.2
[dca85d43] + QuartzImageIO v0.6.0
[b3c3ace0] + RangeArrays v0.3.1
[6038ab10] + Rotations v0.12.0
[06e1c1a7] + TiledIteration v0.2.3
[b8865327] + UnicodePlots v1.1.0
[1986cc42] + Unitful v0.17.0
[34922c18] + VisualRegressionTests v0.3.1
Building ImageMagick → `/opt/julia/packages/ImageMagick/vMfoS/deps/build.log`
Removing intermediate container 010fd3acca18
---> d0396b7a7c65
Step 25/44 : RUN julia -e "using PackageCompiler; syso, sysold = PackageCompiler.compile_incremental(:Plots, :DataFrames, :CSV, :StatsPlots, install = true); cp(syso, sysold, force = true)"
---> Running in a65a621893fd
Updating registry at `/opt/julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
[?25l[2K[?25h Resolving package versions...
Updating `/opt/julia/environments/v1.2/Project.toml`
[b99e7846] + BinaryProvider v0.5.6
[944b1d66] + CodecZlib v0.5.2
[864edb3b] + DataStructures v0.17.0
[5789e2e9] + FileIO v1.0.7
[6218d12a] + ImageMagick v0.7.5
[ade2ca70] + Dates
[44cfe95a] + Pkg
Updating `/opt/julia/environments/v1.2/Manifest.toml`
[no changes]
[91m[ Info: downloading reference images for version 0.0.1
[0m[91m[ Info: Testing plot: gr:1:Lines
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref1.png matches. Difference: 0.00139729602360031
[0m[91m[ Info: Testing plot: gr:2:Functions, adding data, and animations
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref2.png matches. Difference: 0.0011927570038920148
[0m[91m[ Info: Testing plot: gr:3:Parametric plots
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref3.png matches. Difference: 0.0015872159344506094
[ Info: Testing plot: gr:4:Colors
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref4.png matches. Difference: 0.005260198637048354
[0m[91m[ Info: Testing plot: gr:5:Global
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref5.png matches. Difference: 0.005034736845084589
[0m[91m[ Info: Testing plot: gr:6:Images
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref6.png matches. Difference: 0.0019512053026279693
[0m[91m[ Info: Testing plot: gr:7:Arguments
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref7.png matches. Difference: 0.0012614239724851905
[0m[91m[ Info: Testing plot: gr:8:Build plot in pieces
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref8.png matches. Difference: 0.0011679319936617296
[0m[91m[ Info: Testing plot: gr:9:
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref9.png matches. Difference: 0.001366088278159216
[0m[91m[ Info: Testing plot: gr:10:Histogram2D
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref10.png matches. Difference: 0.001964209998839973
[0m[91m[ Info: Testing plot: gr:11:Line types
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref11.png matches. Difference: 0.0033600661126396594
[0m[91m[ Info: Testing plot: gr:12:Line styles
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref12.png matches. Difference: 0.0037642594771708877
[0m[91m[ Info: Testing plot: gr:13:Marker types
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref13.png matches. Difference: 0.0069868261611694925
[0m[91m[ Info: Testing plot: gr:14:Bar
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref14.png matches. Difference: 0.0012299164170406882
[0m[91m[ Info: Testing plot: gr:15:Histogram
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref15.png matches. Difference: 0.0012788060335922865
[0m[91m[ Info: Testing plot: gr:16:Subplots
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref16.png matches. Difference: 0.0
[0m[91m[ Info: Testing plot: gr:17:Adding to subplots
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref17.png matches. Difference: 0.0053796243827973576
[0m[91m[ Info: Testing plot: gr:18:
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref18.png matches. Difference: 0.008208893022677285
[0m[91m[ Info: Testing plot: gr:19:Open/High/Low/Close
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref19.png matches. Difference: 0.0010991193590176916
[0m[91m[ Info: Testing plot: gr:20:Annotations
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref20.png matches. Difference: 0.014843101548767276
[ Info: Testing plot: gr:21:Custom Markers
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref21.png matches. Difference: 0.0016085063219953544
[0m[91m[ Info: Testing plot: gr:22:Contours
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref22.png matches. Difference: 0.003951127144072755
[ Info: Testing plot: gr:23:Pie
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.17.2/ref23.png matches. Difference: 0.030755941108560995
[0m[91m[ Info: Testing plot: gr:24:3D
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref24.png matches. Difference: 0.0016401263130674895
[0m[91m[ Info: Testing plot: gr:26:Groups and Subplots
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref26.png matches. Difference: 0.005274520469725564
[0m[91m[ Info: Testing plot: gr:27:Polar Plots
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref27.png matches. Difference: 0.0027817768464056614
[0m[91m[ Info: Testing plot: gr:28:Heatmap, categorical axes, and aspect_ratio
[0m[91m[ Info: Reference image /opt/julia/packages/Plots/h3o4c/test/reference_images/PlotReferenceImages.jl-0.0.1/Plots/gr/0.25.0/ref28.png matches. Difference: 0.019815565267414157