From 9211a9df227276015e9a70a921a12d1374caab3c Mon Sep 17 00:00:00 2001 From: Brady Planden <55357039+BradyPlanden@users.noreply.github.com> Date: Mon, 10 Jul 2023 08:43:06 +0100 Subject: [PATCH] Fix Julia Data Ingest - Add Packages + DataFrames (#116) --- frontend/src/GetDatasetJulia.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/GetDatasetJulia.js b/frontend/src/GetDatasetJulia.js index 122099cc..24c98cb1 100644 --- a/frontend/src/GetDatasetJulia.js +++ b/frontend/src/GetDatasetJulia.js @@ -44,8 +44,12 @@ export default function GetDatasetJulia({dataset}) { # Dataset and column metadata are under dataset_metadata[x] and # column_metadata[x] respectively. +using Pkg + +Pkg.add(["HTTP", "JSON", "DataFrames"]) using HTTP using JSON +using DataFrames host = "${host}" headers = Dict{String, String}("Authorization" => "Bearer ${token}")