01 2020 档案

摘要:命令行的方式: ipynb转换为pythonjupyter nbconvert --to python my_file.ipynbipynb转换为mdjupyter nbconvert --to md my_file.ipynbipynb转为htmljupyter nbconvert --to ht 阅读全文
posted @ 2020-01-17 21:11 LifeExp 阅读(870) 评论(0) 推荐(0)
摘要:用windows系统的rar软件压缩的zip文档,在linux环境下格式不支持,linux用unzip出现了错误“unsupported compression method”。 网上说用7z,然而我没有管理员权限。 所以在windows下用了命令行里的tar命令打包成.tar.gz的格式,然后传到 阅读全文
posted @ 2020-01-17 20:23 LifeExp 阅读(1913) 评论(0) 推荐(0)
摘要:@echo off FOR /D %%G in ("*") DO ( PUSHD "%%G" for /D %%A in ("*") DO ( PUSHD "%%A" FOR /F "delims=" %%H in ('dir /a-d /b * ^|find /C /V ""') DO echo 阅读全文
posted @ 2020-01-13 12:00 LifeExp 阅读(690) 评论(0) 推荐(0)