Added section on polynomial evaluation to the notebook

This commit is contained in:
2022-04-14 14:43:33 +02:00
parent 5c880222fd
commit b066e4ceaf
3 changed files with 73 additions and 3 deletions

22
docs/shell.nix Normal file
View File

@@ -0,0 +1,22 @@
{ pkgs ? import <nixpkgs> {} }:
let
pythonPackages = pkgs.python3.withPackages (p: with p; [
ipython
jupyterlab
scipy
sympy
bokeh
bkcharts
]);
in
pkgs.mkShell {
buildInputs = [
pythonPackages
# keep this line if you use bash
pkgs.bashInteractive
];
}