-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit cdfd4a1
Showing
46 changed files
with
10,913 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
git | ||
Julia-1.8.5 | ||
node_modules | ||
node-v20.2.0-win-x64 | ||
ext/conf/* | ||
ext/info/* | ||
ext/maps/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@echo off | ||
|
||
set zp=%cd%\install\7zip\7za.exe | ||
|
||
if not exist %cd%\git ( | ||
echo Decompressing git | ||
%zp% x %cd%\install\git.zip | ||
) | ||
|
||
if not exist %cd%\node-v20.2.0-win-x64 ( | ||
echo Decompressing nodeJS | ||
%zp% x %cd%\install\node-v20.2.0-win-x64.zip | ||
) | ||
|
||
if not exist %cd%\Julia-1.8.5 ( | ||
echo Decompressing Julia-1.8.5 | ||
%zp% x %cd%\install\Julia-1.8.5.zip | ||
) | ||
|
||
set JULIA_DEPOT_PATH=%cd%\Julia-1.8.5\depot | ||
if not exist %JULIA_DEPOT_PATH% ( | ||
echo Installing Julia packages, it may take a while. | ||
%cd%\Julia-1.8.5\bin\julia.exe -e "using Pkg; Pkg.add.([\"Base64\", \"Combinatorics\", \"Dates\", \"DelimitedFiles\", \"GZip\", \"HTTP\", \"Images\", \"JSON\", \"OrderedCollections\", \"Test\", \"XLSX\", \"ZipFile\", \"Logging\", \"LoggingExtras\", \"Gzip_jll\", \"FilesystemDatastructures\"])" | ||
) | ||
|
||
pause |
Oops, something went wrong.