安装Tensorflow时出现Read Timed out解决方法+使用conda配置tensorflow-gpu=1.14.0

使用pip 安装模块时read time out问题:
      输入命令:
               pip --default-timeout=100 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow
针对其他软件包也同样适用。方法将tensorflow的包名换 成其他软件包即可

配置tensorflow-gpu=1.14.0的方式
1.使用conda创建新的python环境并进行激活操作

conda create -n Pulmonary-Nodule-Detection-Based-on-Deep-Learning python=3.6.0
conda activate Pulmonary-Nodule-Detection-Based-on-Deep-Learning

注意:centos在创建conda环境时,会出现如下问题:
在这里插入图片描述
解决方案:https://blog.csdn.net/qq_27722471/article/details/117222150

2.安装CUDA10.0

conda install cudatoolkit=10.0 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/linux-64/

3.安装Cudnn7.6.5

conda install cudnn=7.6.5 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/linux-64/

4.安装tensorflow-gpu1.14.0

pip install tensorflow-gpu==1.14.0

5.安装keras2.2.5

pip install Keras==2.2.5

6.验证安装是否成功
安装Tensorflow时出现Read Timed out解决方法+使用conda配置tensorflow-gpu=1.14.0_第1张图片

【debug] Failed building wheel for grpcio 解决
在安装tensorflow时,出现Failed building wheel for grpcio的错误,可通过pip install --upgrade pip来解决。
AttributeError: ‘str’ object has no attribute ‘decode’
今天更新环境后,在使用tf.keras.models.load_model时报错。AttributeError: ‘str’ object has no attribute ‘decode’
经查,发现h5py更新到了3.1.0,修改为2.10.0后问题解决

Command “python setup.py egg_info” failed with error code 1 in /tmp/pip-build-zqkwizlc/cryptography/
在安装openslides,出现了上述的错误,使用如下命令实现了相关的改善:
python -m pip install --upgrade --force pip
pip install openslides

如何进行PyTorch最新安装教程——torch1.6 + torchvision0.7(2022.04)?
https://www.pythonheidong.com/blog/article/1551055/aaa2b7f83da7f984f0f5/

AttributeError: ‘version_info‘ object has no attribute ‘version‘
pip install pyparsing==2.4.7

你可能感兴趣的:(深度学习,tensorflow,深度学习)