
深度学习环境配置
zyfone_cs
这个作者很懒,什么都没留下…
展开
-
常用命令汇总
服务器常用命令汇总。原创 2023-02-17 15:04:19 · 197 阅读 · 0 评论 -
gitbash运行完不关闭
末尾加上exec /bin/bash原创 2022-01-23 00:49:15 · 1517 阅读 · 0 评论 -
windows 安装pycocotools工具
windows 安装pycocotools工具 git clone https://github.com/cocodataset/cocoapi.git #To prevent installation error do the following after commiting cocooapi : #using file explorer naviagate to cocoapi\PythonAPI\setup.py and change line 14 from: #ext原创 2022-01-22 23:26:02 · 132 阅读 · 0 评论 -
常用命令汇总
服务器管理命令汇总 服务器anaconda配置环境方法 vi ~/.bashrc 添加export PATH=/home/lishanliao/anaconda3/bin:$PATH source ~/.bashrc 查看linux版本时要nvcc -V nvidia-smi只是查看最高支持的版本 VSCODE免密登录 创建密匙 ssh-keygen 缺少文件 在~/.ssh/下建立authorized_keys文件,修改权限: touch ~/.ssh/authorized_keys c原创 2021-12-07 09:21:34 · 228 阅读 · 0 评论 -
Git笔记整理
Git笔记整理 之前一直没时间整理,今天正好摸个鱼就不看论文了,整理之前的学习笔记 如果你需要设置主页,你需要创建一个仓库随后将仓库的名字命名为:username.github.io create a new repository on the command line git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/zyfo原创 2021-07-21 13:42:12 · 145 阅读 · 0 评论 -
深度学习代码遇到坑总结(持续更新)
深度学习代码遇到坑总结(持续更新) ''' 错误代码 Initializing libiomp5md.dll, but found libiomp5md.dll already initialized. ''' import os os.environ['KMP_DUPLICATE_LIB_OK'] = 'TRUE' ''' Initializing libiomp5md.dll, but found libiomp5md.dll already initialized. IOError: i原创 2021-07-05 15:32:57 · 746 阅读 · 0 评论 -
anaconda各类镜像源集合及使用方法
anaconda各类镜像源集合及使用方法 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:https://mirrors.aliyun.com/pypi/simple/ 中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:https://pypi.hustunique.com/ 山东理工大学:https://pypi.sdutlinux.org/ 豆瓣:https://pypi.douba原创 2021-07-02 15:37:46 · 876 阅读 · 0 评论