
解决错误
WeiXy+
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
win10 localhost 解析为::1 的解决办法
在cmd中ping localhost解析出来的是IPV6的::1,原因是windows有个优先解析列表,当ipv6的优先级高于ipv4时,就会出现这种情况。修改优先级管理员权限打开命令提示符(命令提示符(管理员)(A))netsh interface ipv6 show prefixpolicies,查询ipv6优先级设置使::/96、::ffff:0:0/96的优先级高于::/0和:...原创 2020-02-19 10:27:03 · 743 阅读 · 0 评论 -
MySQL42000错误
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''2-13'' at line 1原因:使用了MySQL保留字解决:加上反引号(1...原创 2020-02-13 12:54:22 · 9420 阅读 · 0 评论 -
PermissionError
权限问题PermissionError,文件正被占用在windows下查看文件被哪个程序占用打开资源监视器Ctrl + shift + ESC 任务管理器----性能----打开资源监视器—CPU—关联的句柄中输入你的目标文件...原创 2019-11-09 09:30:50 · 1138 阅读 · 0 评论 -
TensorFlow中OOM错误
I have seen OOMs happen several epochs into training in tensorflow, my best guess is that if your model is at the borderline of using all the GPU memory then internal memory allocation issues such as ...原创 2019-10-30 10:29:47 · 651 阅读 · 0 评论 -
python import sklearn出错 "ImportError: DLL load failed: 找不到指定的模块
安装sklearn,报错找不到指定程序(不是模块)问题原因:numpy、SciPy、scikit-learn不是同一安装源,有的是pip直接安装,有的是.whl文件安装解决方法:统一安装源所有安装包均可在这个网站上找到,均采用pip install [文件名]安装即可。...原创 2019-10-26 17:52:19 · 493 阅读 · 0 评论 -
Windows查看显卡信息
首先进入到C:\Program Files\NVIDIA Corporation\NVSMIshift+右键 打开PowerShell窗口输入 .\nvidia-smi查看cuda版本进入cmd输入nvcc -V原创 2019-10-23 10:59:39 · 5531 阅读 · 1 评论 -
Anaconda Prompt 下切换路径问题
问题:在Anaconda Prompt 下按一般方法cd+路径是进入不了D盘的。原因:Anaconda Prompt 只能在根目录下进行切换盘符解决办法:切换到上级目录。如图原创 2019-06-29 16:45:44 · 4303 阅读 · 1 评论 -
BrokenPipeError: [Errno 32] Broken pipe
pytorch运行报错:BrokenPipeError: [Errno 32] Broken pipe该问题的产生是由于windows下多线程的问题,和DataLoader类有关解决办法:可以通过修改 num_works = 0 解决原创 2019-07-06 10:01:27 · 534 阅读 · 0 评论 -
IndentationError错误
IndentationError错误tab和空格使用错误原创 2019-08-29 10:55:05 · 632 阅读 · 0 评论