1、ubuntu安装
如果是多用户进行操作的话,建议home文件夹要足够大
2、anaconda安装
在自己的账户下安装的Python3.6版本的Anaconda3-5.0.0-Linux-x86_64.sh。
安装完成注意修改环境变量,并且source ~/.bashrc
由于如果安装基于python3.7版本的话,需要新建虚拟换环境,会网络错误,暂时无法解决
3、tensorflow安装
需要先把pip升级到20.2.3,否则会有很有库安装不了
pip install --upgrade pip
错误1:tensorflowstub/dtypes.py:542: FutureWarning: Passing (type, 1) or ‘1type’ as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / ‘(1,)type’.
原因:需要查看numpy和tensorflow的对应关系
错误2:h5py/_init.py:36: FutureWarning: Conversion of the second argument of issubdtype from float
to np.floating
is deprecated
原因:需要查看p5py和numpy的对应关系
tensorflow | numpy | h5py |
---|---|---|
1.14.0 | 1.16.0 | 2.8.0 |
2.2.0 | 1.16.0 | 2.10.0 |