0%

服务器环境配置命令

  1. conda 检查和 clone 环境

    1
    2
    codna info -e
    conda create -n tf20 --clone tf13 #创建tf20环境
  2. pip 使用阿里云的源
    Linux、Mac 下
    修改~/.pip/pip.conf(不存在就创建一个),加入如下配置:

    1
    2
    3
    4
    [global]
    index-url = http://mirrors.aliyun.com/pypi/simple/
    [install]
    trusted-host=mirrors.aliyun.com

    windows 下,在当前用户目录下创建一个 pip 目录,即 C:\Users\ 用户名 \pip。在 pip 目录内新增一个 pip.ini 文件。加入如下配置:

    1
    2
    3
    4
    [global]
    index-url = http://mirrors.aliyun.com/pypi/simple/
    [install]
    trusted-host=mirrors.aliyun.com
  3. 安装 tf20 和 pytorch

    1
    2
    pip install tensorflow-gpu
    pip install torch torchvision
支持一根棒棒糖!