TensorFlow报错FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated
, 解决方案:pip install numpy==1.16.0
- 国内镜像 ustc 稳定性大于 tuna, 配置
.bashrc
如下:1
2
3
4
5
6
7
8
9
10
11channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
- https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
- https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
- https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
- https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
- defaults
show_channel_urls: true - 删除虚拟环境:
conda remove -n your_env_name --all
- nohup 查看运行的后台进程
jobs -l
- Anaconda 导出环境 / 从外部安装环境,导出已有环境:
conda env export > environment.yaml
, 当我们想再次创建该环境,或根据别人提供的.yaml 文件复现环境时,可以:conda env create -f environment.yaml
- .tar.bz2 文件解压命令,从网络上下载到的源码包,最常见的是.tar.gz 包,还有一部分是.tar.bz2 包
.tar.gz 格式解压为tar -zxvf xx.tar.gz
.tar.bz2 格式解压为tar -jxvf xx.tar.bz2
- Python 忽略警告信息:
1
2import warnings
warnings.filterwarnings("ignore") python 命令生成 requestment.txt 文件,
pip freeze > requirements.txt
, 安装:pip install -r requirements.txt
run
nvidia-smi
,遇见Failed to initialize NVML: Driver/library version mismatch
的错误。参考下面的解决方案:1
2
3
4
5
6I had reinstalled nvidia driver: run these commands in root mode:
1. systemctl isolate multi-user.target
2. modprobe -r nvidia-drm
3. Reinstall Nvidia driver: chmod +x NVIDIA-Linux-x86_64–410.57.run
4. systemctl start graphical.target
and finally check nvidia-smi
日常 bug
相关文章推荐
支持一根棒棒糖!
- 本文链接: http://sunyancn.github.io/post/52747.html
- 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!