You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I use normal mode install almond.
eg: ./coursier launch --fork almond:0.14.0-RC11 --scala 2.12.11 -- --install --force
excute this code using 1s finished.
but when use coursier bootstrap --standalone \ almond:0.14.0-RC11 --scala 2.12.11\ -o almond
to generate a standalone app named almond.
then use almond --install --force to install almond.
excute this code using 4-5s finished
I find normal mode's kernel.json: { "argv": [ "java", "-cp", "/root/.local/share/jupyter/kernels/scala/launcher.jar", "coursier.bootstrap.launcher.Launcher", "--connection-file", "{connection_file}" ], "display_name": "Scala", "language": "scala" }
when I use normal mode install almond.
eg:
./coursier launch --fork almond:0.14.0-RC11 --scala 2.12.11 -- --install --force
excute this code using 1s finished.
but when use
coursier bootstrap --standalone \ almond:0.14.0-RC11 --scala 2.12.11\ -o almond
to generate a standalone app named almond.
then use
almond --install --force
to install almond.excute this code using 4-5s finished
I find normal mode's kernel.json:
{ "argv": [ "java", "-cp", "/root/.local/share/jupyter/kernels/scala/launcher.jar", "coursier.bootstrap.launcher.Launcher", "--connection-file", "{connection_file}" ], "display_name": "Scala", "language": "scala" }
but standalone mode's kernel.json:
{ "argv": [ "java", "-cp", "/root/.local/share/jupyter/kernels/scala/launcher.jar", "coursier.bootstrap.launcher.ResourcesLauncher", "--connection-file", "{connection_file}" ], "display_name": "Scala", "language": "scala" }
The text was updated successfully, but these errors were encountered: