mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 07:54:50 +00:00
python.pkgs.tensorflow: disable for python37
because there are no binaries available.
This commit is contained in:
parent
a263ab4e5c
commit
6825495caf
@ -10609,7 +10609,7 @@ EOF
|
||||
|
||||
tensorflow-tensorboard = callPackage ../development/python-modules/tensorflow-tensorboard { };
|
||||
|
||||
tensorflow =
|
||||
tensorflow = disabledIf isPy37 (
|
||||
if stdenv.isDarwin
|
||||
then callPackage ../development/python-modules/tensorflow/bin.nix { }
|
||||
else callPackage ../development/python-modules/tensorflow/bin.nix rec {
|
||||
@ -10617,7 +10617,7 @@ EOF
|
||||
inherit (pkgs.linuxPackages) nvidia_x11;
|
||||
cudatoolkit = pkgs.cudatoolkit_9_0;
|
||||
cudnn = pkgs.cudnn_cudatoolkit_9_0;
|
||||
};
|
||||
});
|
||||
|
||||
tensorflowWithoutCuda = self.tensorflow.override {
|
||||
cudaSupport = false;
|
||||
|
Loading…
Reference in New Issue
Block a user