
python的错误集合
Bingoyear
自信人生二百年,会当击水三千里。
展开
-
einops中pack、unpack方法的使用记录
einops中pack、unpack使用原创 2023-02-17 10:19:47 · 1897 阅读 · 0 评论 -
tqdm进度条参数
def init(self, iterable=None, desc=None, total=None, leave=True,file=sys.stderr, ncols=None, mininterval=0.1,maxinterval=10.0, miniters=None, ascii=None, disable=False,unit=‘it’, unit_scale=False, ...原创 2019-11-25 16:14:17 · 5095 阅读 · 0 评论 -
Windows Defender might be impacting your build performance. PyCharm checked the following directorie
Pycharm出现如下错误Windows Defender might be impacting your build performance. PyCharm checked the following directories:解决方法:将文件夹加入到Windows Defender免扫描中win10步骤如下:打开Windows Defender,大考windows安全中心,病毒和威胁...原创 2019-10-12 17:29:08 · 5769 阅读 · 0 评论 -
grub 命令行启动windows
前两天装CentOS,把windows启动项搞丢了。结果从CentOS中也没做出来本代码适合缺少启动项,也没找回的情形开机按C键,启动grub1.查看系统分区grub>ls一般系统盘为C盘,我的是msdos1,分辨不出来时可以看盘内存大小2.启动windowsgrub>insmod ntfsgrub>set root=‘hd0,1’grub>chainlo...原创 2018-12-28 11:49:20 · 6365 阅读 · 1 评论 -
python3中的相对路径问题
1、需要手动将Edit configurations中work path设置为当前py文件所在目录。test.pywith open('1.txt') as f: f.write('当前目录‘) f.close()# ./2.txt 当前目录# ../3.txt 上级目录...原创 2019-04-17 14:28:07 · 1362 阅读 · 0 评论