摘要:
##requirements.txt文件记录了项目所依赖的包以及版本,方便在新环境导入 生成requirements.txt文件 pip freeze > requirements.txt 在新环境导入依赖包 pip install -r requirements.txt 阅读全文
摘要:
linux的cat命令 cat file1 file2 file3 > file 将file1,file2,file3,重定向到file文件 windowns系统没有cat,可以下载git的客户端 https://git-scm.com/downloads 阅读全文