在conda中更改cuda和cudnn版本

 conda install cudatoolkit=9.0

conda install cudnn=7.0.5

查看tensorflow版本:

1. python

import tensorflow as tf

tf.__version__

 

2.pip list | grep tensorflw

2.1 查看numpy版本

Python

import numpy as np

np.__version__

2.2 卸载当前版本

pip uninstall numpy

2.3 安装制定版本

pip install numpy==1.16

你可能感兴趣的:(ubuntu)