Created
May 17, 2023 00:38
-
-
Save steshaw/3e6f5f0e7535f143e0bf177eccc64f23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {} }: | |
(pkgs.buildFHSUserEnv { | |
name = "python-fhs-shell"; | |
targetPkgs = pkgs: (with pkgs; [ | |
(python3.withPackages(pp: [pp.pip])) | |
# python39Packages.pip | |
# python39Packages.virtualenv | |
#cudaPackages.cudatoolkit_11 | |
]); | |
runScript = "bash"; | |
}).env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment