Désactiver le GPU dans Jupyter Notebook dans TensorFlow

import os
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
import tensorflow as tf
Novid19