摘要: import os import datetime import hashlib def checksum(filename): with open(filename, mode='rb') as f: d = hashlib.md5() while True: buf = f.read(128) if ... 阅读全文
posted @ 2019-11-13 16:57 TIMLONG 阅读(542) 评论(0) 推荐(0)
摘要: 安装conda install jupyter notebook启动nohup jupyter notebook &生成配置文件jupyter notebook --generate-config安装代码补齐conda install -c conda-forge jupyter_contrib_n 阅读全文
posted @ 2019-11-13 13:38 TIMLONG 阅读(234) 评论(0) 推荐(0)