| I trying to setup a jupyter server on nixos this is my config:
services = {
jupyter = {
enable = true;
extraPackages = with pkgs.python3.pkgs; [
matplotlib
pyvista
numpy
sympy
];
ip = "0.0.0.0";
port = 10000;
The server run nicely but I cannot have the "extraPackage" in the notebooks. According to the doc this is exactly what the option is supposed to do. https://github.com/NixOS/nixpkgs/blob/2f6dae9cdec9911e892a7345bc5acbb2e8ab26a0/nixos/modules/services/development/jupyter/default.nix#L12 . I don't understand what I do wrong. When I try to import numpy in the notebook it does not work.
|