Loading

08 2021 档案

摘要:# 切换到master分支 git checkout master # 将bencha分支的代合并到master git merge bencha # 查看状态 git status # 推送 git push -u origin master 阅读全文
posted @ 2021-08-27 20:03 _yhwu 阅读(270) 评论(0) 推荐(0)
摘要:错误提示 warning: LF will be replaced by CRLF in readme.txt.The file will have its original line endings in your working directory. 问题原因:此问题是不同操作系统的使用的换行符 阅读全文
posted @ 2021-08-27 20:01 _yhwu 阅读(114) 评论(0) 推荐(0)
摘要:一招鲜 pip install package_name -i https://pypi.doubanio.com/simple 注:https,而不是http,被坑了N多回! 阅读全文
posted @ 2021-08-26 21:05 _yhwu 阅读(313) 评论(0) 推荐(0)
摘要:下载并安装gcc编译安装包 sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get install gcc-7 sudo apt-get install g++-7 将gcc7,g++7 阅读全文
posted @ 2021-08-23 13:13 _yhwu 阅读(1333) 评论(0) 推荐(0)
摘要:改用如下命令: pip install torch==1.2.0 -f https://download.pytorch.org/whl/torch_stable.html 阅读全文
posted @ 2021-08-22 20:18 _yhwu 阅读(2077) 评论(0) 推荐(0)
摘要:方式一:文字环境下,\textasciitilde 方式二:公式环境下,$ \sim $ 注:推荐使用方式二 阅读全文
posted @ 2021-08-11 20:54 _yhwu 阅读(4596) 评论(0) 推荐(0)