arregla shenv para jupyter
This commit is contained in:
parent
f10b127906
commit
f36e352257
|
@ -1,12 +1,22 @@
|
|||
pkgs: {
|
||||
paths = with pkgs; [
|
||||
(python39.withPackages ( packages: with packages; [
|
||||
jupyterlab
|
||||
matplotlib
|
||||
numpy
|
||||
octave
|
||||
scipy
|
||||
sympy
|
||||
] ))
|
||||
paths = with pkgs;
|
||||
let
|
||||
python3 = python39.withPackages ( ps: with ps; [
|
||||
matplotlib
|
||||
numpy
|
||||
scipy
|
||||
sympy
|
||||
]);
|
||||
jupyterPath = jupyter-kernel.create { definitions = {
|
||||
octave = octave-kernel.definition;
|
||||
};};
|
||||
in
|
||||
[
|
||||
(jupyter.override {
|
||||
definitions = {
|
||||
octave = octave-kernel.definition;
|
||||
};
|
||||
inherit python3;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue