elect
02/24/2021, 2:25 PMCarter
02/24/2021, 3:21 PMmavenLocal
with a notebook running on my desktop, although I was hoping to publish to a private GitHub Packages repo and pull this into a notebook running in the cloud.Florian Magin
02/26/2021, 12:22 PMРолан
03/09/2021, 3:38 PMholgerbrandl
03/10/2021, 10:00 AMFlorian Magin
03/11/2021, 6:18 PMimport org.jetbrains.kotlinx.jupyter.IkotlinKt;
import java.io.*;
public class BugDemo {
public static void main(String[] args) {
IkotlinKt.embedKernel(
new File(args[1]),
null,
null);
}
}
a default gradle file as generated by IntelliJ for a new project that specifies the maven package as a dependency
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.kotlinx:kotlin-jupyter-kernel:0.8.3.281'
}
Building then fails with:
gradle classes
> Task :compileJava FAILED
error: org.jetbrains.kotlinx.jupyter.libraries.ResolutionInfoProvider: class file for org.jetbrains.kotlinx.jupyter.libraries.ResolutionInfoProvider not found
/home/fmagin/gits/jupyter-gradle-test/src/main/java/BugDemo.java:5: error: cannot access ResolutionInfoProvider
public class BugDemo {
^
class file for org.jetbrains.kotlinx.jupyter.libraries.ResolutionInfoProvider not found
1 error
FAILURE: Build failed with an exception.
I have no idea if this is a bug or if I am doing something wrong.Hampus Londögård
03/11/2021, 6:48 PMRafał Trójczak
03/21/2021, 1:52 PMDieter Konrad
03/23/2021, 9:21 AM%use ???
elect
03/23/2021, 4:21 PMnr_expected_exponents = binom(m + n, n) // nr_expected_exponents: np.ndarray
but if I try
binomial(m + n, doubleArrayOf(n.toDouble())
then I get
Cannot run program "python" (in directory "/tmp/nativeKtNumPy2138897567746194273"): error=2, No such file or directory
java.io.IOException: Cannot run program "python" (in directory "/tmp/nativeKtNumPy2138897567746194273"): error=2, No such file or directory
Peter
03/30/2021, 6:44 PMtherealbluepandabear
04/04/2021, 4:08 AMaltavir
04/05/2021, 10:21 AMIaroslav Postovalov
04/06/2021, 1:23 PMAny
object, and I want to render it inside my layout.Ролан
04/07/2021, 9:10 AMРолан
04/07/2021, 2:13 PMPeter
04/08/2021, 9:37 AMfor (asset in assets) {
val html = CandlestickChart(asset).render()
DISPLAY(HTML(html))
}
I noticed the passed Notebook instance should be able to help with this (like currentCell etc), but cannot figure out last part of puzzle? Any hints?Filipe Duarte
04/08/2021, 4:56 PMРолан
04/12/2021, 6:36 PMFilipe Duarte
04/16/2021, 4:06 PMzaleslaw
04/27/2021, 10:33 AMhttps://www.youtube.com/watch?v=jCFZc97_XQU▾
Hampus Londögård
05/01/2021, 9:46 AMaltavir
05/03/2021, 5:54 PMHampus Londögård
05/05/2021, 9:40 AM??
which is really niceHampus Londögård
05/05/2021, 12:22 PMaltavir
05/05/2021, 1:25 PMPeter
05/08/2021, 7:40 PMLeoColman
05/11/2021, 5:29 AMAlan Pierri
05/11/2021, 10:18 PMHampus Londögård
05/12/2021, 6:05 AMjupyter-lab
?
This is actually working as I'd like in jupyter-notebook
which makes me confused. I tried adding hinterland
but didn't seem to help for Kotlin kernelHampus Londögård
05/12/2021, 6:05 AMjupyter-lab
?
This is actually working as I'd like in jupyter-notebook
which makes me confused. I tried adding hinterland
but didn't seem to help for Kotlin kernelIlya Muradyan
05/12/2021, 8:59 AMHampus Londögård
05/12/2021, 9:03 AMIlya Muradyan
05/12/2021, 9:25 AMHampus Londögård
05/12/2021, 9:55 AM