mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-10 18:23:08 +00:00
13 lines
No EOL
322 B
Julia
13 lines
No EOL
322 B
Julia
# beefblup install
|
|
# Prepares the Julia environment for using beefblup by installing the requisite
|
|
# packages
|
|
# Usage: julia install.jl
|
|
# (C) 2019 Thomas A. Christensen II
|
|
# Licensed under BSD-3-Clause License
|
|
|
|
# Import the package manager
|
|
using Pkg
|
|
|
|
# Install requisite packages
|
|
Pkg.add("XLSX")
|
|
Pkg.add("Gtk") |