1
0
Fork 0
mirror of https://github.com/MillironX/beefblup.git synced 2024-09-21 05:12:05 +00:00

Add excel reader dependency to install script

This commit is contained in:
Thomas A. Christensen II 2019-11-08 18:46:11 -08:00
parent 7300bcb010
commit a0b1aefc18
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -1,3 +1,12 @@
# 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
Pkg.add("XLSXReader")
# Install requisite packages
Pkg.add("XLSX")