Last active
February 3, 2026 20:27
-
-
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/39fe6299f002ec964ddf3c8a4a784e099d80231e
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 License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| ## 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