Ubuntu16.04 中 pip 使用清华源快速安装 pytorch 0.4.1

  • 环境
    Ubuntu 16.04
    python3.x

总结了几种pip安装 pytorch 0.4.1 的方法:

  • 方法1
    pip直接安装

    pip install torch==0.4.1
    

    缺点:下载速度特别慢,而且可能中断,然后又得重新下载

  • 方法2
    pip 使用清华源快速安装 pytorch 0.4.1

    pip install torch==0.4.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
    

    优点:下载速度特别快,可达5M/s
    缺点:由于下载速度快,也可能中断,然后又得重新下载

  • 方法3
    先wget下载whl,再pip安装

    wget https://pypi.tuna.tsinghua.edu.cn/packages/f9/4e/1bcb4688b7506c340ca6ba5b9f57f4ad3b59a193bba365bf2b51e9e4bb3e/torch-0.4.1-cp35-cp35m-manylinux1_x86_64.whl
    
    pip install torch-0.4.1-cp35-cp35m-manylinux1_x86_64.whl
    

    优点:下载速度特别快,可达5M/s,且稳定可靠,whl下载后可复用

    注:wget 的下载地址在‘方法2’中可以看到,如下:
    在这里插入图片描述

其他

  • 安装pytorch的其他版本也如上:
    pytorch0.4.0
    pytorch0.4.1
    pytorch1.0.0
    pytorch1.0.1
    pytorch1.0.1.post2pytorch0.4.0
    pytorch0.4.1
    pytorch1.0.0
    pytorch1.0.1
    pytorch1.0.1.post2
    pytorch 1.1.0
    pytorch 1.2.0
    pytorch 1.3.0
    pytorch 1.3.1

    pytorch 1.1.0
    pytorch 1.2.0
    pytorch 1.3.0
    pytorch 1.3.1

你可能感兴趣的:(深度学习,常见问题,人工智能,pytorch,torch,pip,pip3)