环境配置(2)——更换清华源、Tensorflow、Keras

安装Tensorflow、Keras框架

  1. 更换清华源
    cmd或powerShell输入:
    pip install pip -U
    在这里插入图片描述
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    在这里插入图片描述
  2. 安装tensorflow
    pip install tensorflow-gpu==1.15.0
    在这里插入图片描述
  3. 安装Keras
    pip install keras==2.2.5
    环境配置(2)——更换清华源、Tensorflow、Keras_第1张图片
  4. 安装其他库:
    pip install numpy scipy pillow cython matplotlib scikit-image opencv-python h5py imgaug jupyterlab
    环境配置(2)——更换清华源、Tensorflow、Keras_第2张图片
  5. 测试tensorflow及keras环境:
    使用cmd进入python交互式环境,输入import keras,有如下显示则安装成功
    在这里插入图片描述

你可能感兴趣的:(基于深度学习的实例分割)