Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. {
  2. pkgs ? import <nixpkgs> { },
  3. }:
  4. with pkgs;
  5. python3.buildEnv.override {
  6. ignoreCollisions = true;
  7. extraLibs = with python3Packages; [
  8. pip
  9. ipykernel
  10. jupyterlab
  11. matplotlib
  12. numpy
  13. pandas
  14. seaborn
  15. opencv4
  16. imutils
  17. ];
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement