构建自定义Tensorflow镜像时用到的链接地址整理

NVIDIA相关:

  1. NVIDIA CUDA镜像的docker hub:https://hub.docker.com/r/nvidia/cuda/tags?page=&page_size=&ordering=&name=12.4.1
  2. NVIDIA 构建的Tensorflow镜像包:https://docs.nvidia.com/deeplearning/frameworks/tensorflow-release-notes/overview.html
  3. CUDA ToolKits 下载地址:https://developer.nvidia.com/cuda-toolkit-archive

Tensorflow相关:

  1. Tensorflow官网安装地址:https://www.tensorflow.org/install/pip?hl=zh-cn
  2. Tensorflow官网gpu支持:https://www.tensorflow.org/install/gpu?hl=zh-cn#software_requirements
  3. Tensorflow docker hub地址:https://hub.docker.com/r/tensorflow/tensorflow/tags?page=&page_size=&ordering=&name=
  4. Tensorflow Github地址:https://github.com/tensorflow/tensorflow/blob/v2.15.0/tensorflow/tools/ci_build/README.md

TensorRT相关:

  1. 安装指南:https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html
  2. TensorRT下载地址:https://developer.nvidia.com/tensorrt/download
  3. TensorRT 报错TF-TRT Warning: Could not find TensorRT解决:https://blog.csdn.net/weixin_45710350/article/details/140232873?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_baidulandingword~default-0-140232873-blog-132561059.235、 https://github.com/tensorflow/tensorflow/issues/61986
  4. TensorRT pip源地址:https://pypi.org/project/tensorrt-cu12/#history、https://pypi.org/simple/tensorrt/

TensorBoard相关

  1. 教程地址:https://tensorflow.google.cn/tensorboard/get_started?hl=zh-cn

python相关

  1. miniconda的安装包地址(里面内置了不同版本的python):https://repo.anaconda.com/miniconda/
  2. 官方源:https://pypi.org/
  3. 增加国内镜像源 conda/pip:
    # conda/pip增加国内源 RUN conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ && \ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ && \ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ && \ conda config --set show_channel_urls yes && \ pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/ && \ pip config set global.trusted-host mirrors.aliyun.com

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-10 05:12:06       49 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-10 05:12:06       53 阅读
  3. 在Django里面运行非项目文件

    2024-07-10 05:12:06       42 阅读
  4. Python语言-面向对象

    2024-07-10 05:12:06       53 阅读

热门阅读

  1. 凸包——G - Highest Ratio

    2024-07-10 05:12:06       19 阅读
  2. 力扣第226题“翻转二叉树”

    2024-07-10 05:12:06       22 阅读
  3. QUdpSocket 的bind函数详解

    2024-07-10 05:12:06       21 阅读
  4. 代码随想录算法训练营第7天

    2024-07-10 05:12:06       25 阅读
  5. 关于美国服务器IP的几个常见问题

    2024-07-10 05:12:06       25 阅读
  6. html&css基础

    2024-07-10 05:12:06       22 阅读
  7. 【云原生】Kubernetes部署高可用平台手册

    2024-07-10 05:12:06       20 阅读
  8. Ubuntu 20.04.6 安装 docker

    2024-07-10 05:12:06       26 阅读
  9. 数据结构第07节:队列

    2024-07-10 05:12:06       20 阅读
  10. 洛谷P2176 [USACO11DEC] RoadBlock S / [USACO14FEB]Roadblock G/S

    2024-07-10 05:12:06       21 阅读