-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_packages.jl
54 lines (52 loc) · 1.14 KB
/
install_packages.jl
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
println("Installing all my favorite libraries...")
using Pkg
Pkg.add("Agents")
Pkg.add("BandedMatrices")
Pkg.add("BenchmarkTools")
Pkg.add("Cbc")
Pkg.add("CDCS")
Pkg.add("Conda")
Pkg.add("CSV")
Pkg.add("DataFrames")
Pkg.add("DataFramesMeta")
Pkg.add("DataStructures")
Pkg.add("Distributions")
Pkg.add("Flux")
Pkg.add("FredData")
Pkg.add("FreqTables")
Pkg.add("Genie")
Pkg.add("GLM")
Pkg.add("GLPK")
Pkg.add("GR")
Pkg.add("GraphPlot")
Pkg.add("HTTP")
Pkg.add("IJulia")
Pkg.add("Ipopt")
Pkg.add("InteractiveUtils")
Pkg.add("JuMP")
Pkg.add("Juno")
Pkg.add("LightGraphs")
Pkg.add("Logging")
Pkg.add("OpenStreetMapX")
Pkg.add("Parameters")
Pkg.add("PGFPlots")
Pkg.add("Plots")
Pkg.add("Pluto")
Pkg.add("PlutoUI")
Pkg.add("PyCall")
Pkg.add("PyPlot")
Pkg.add("RCall")
Pkg.add("ScikitLearn")
Pkg.add("SimpleHypergraphs")
Pkg.add("SparseArrays")
Pkg.add("StatsBase")
Pkg.add("StatsKit")
Pkg.add("Turing")
Pkg.add("XLSX")
using Conda
println("Installing some libraries with conda...")
Conda.runconda(`install jupyter --yes`)
Conda.runconda(`install matplotlib --yes`)
Conda.runconda(`install folium -c conda-forge --yes`)
println("Precompiling all packages...")
Pkg.precompile()