Last active
September 1, 2024 10:15
-
-
Save dacr/98bd203d8246d2eba5ea3a60c4719053 to your computer and use it in GitHub Desktop.
SMILE scala-cli REPL startup script / published by https://github.com/dacr/code-examples-manager #b1e0715f-35a5-4af0-92d6-559280992fba/aecc58934ba2522517de1311bceb4b3a022869fd
This file contains hidden or 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
#!/usr/bin/env bash | |
## summary : SMILE scala-cli REPL startup script | |
## keywords : bash, smile, repl, scala-cli | |
## publish : gist | |
## authors : David Crosson | |
## license : Apache NON-AI License Version 2.0 (https://raw.githubusercontent.com/non-ai-licenses/non-ai-licenses/main/NON-AI-APACHE2) | |
## id : b1e0715f-35a5-4af0-92d6-559280992fba | |
## created-on : 2023-05-08T08:45:50+02:00 | |
## managed-by : https://github.com/dacr/code-examples-manager | |
scala-cli repl \ | |
--dep "com.github.pathikrit::better-files:3.9.2" \ | |
--dep "com.github.haifengl::smile-scala:3.1.1" \ | |
--dep "org.bytedeco:javacpp-platform:1.5.10" \ | |
--dep "org.bytedeco:javacpp:1.5.10,classifier=linux-x86_64" \ | |
--dep "org.bytedeco:arpack-ng:3.9.1-1.5.10,classifier=linux-x86_64" \ | |
--dep "org.bytedeco:openblas:0.3.26-1.5.10,classifier=linux-x86_64" \ | |
--dep "org.slf4j:slf4j-nop:2.0.13" \ | |
--dep "com.lihaoyi::requests:0.9.0" \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment