Skip to content

Instantly share code, notes, and snippets.

@josephsdavid
Created May 15, 2019 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephsdavid/89ca9314704ed5b5464ff6c27f03a23e to your computer and use it in GitHub Desktop.
Save josephsdavid/89ca9314704ed5b5464ff6c27f03a23e to your computer and use it in GitHub Desktop.
```let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
python37
python37Packages.pandas
python37Packages.numpy
python37Packages.rpy2
python37Packages.matplotlib
#python37Packages.sqlite
python37Packages.notebook
python37Packages.ipython
python37Packages.scikitlearn
python37Packages.seaborn
python37Packages.scipy
python37Packages.plotly
python37Packages.ipywidgets
python37Packages.future
python37Packages.scikitimage
#Todo Package graphlab
python37Packages.tzlocal
python37Packages.simplegeneric
R
rPackages.mlbench
rPackages.arules
python37Packages.pprintpp
];
}```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment