摘要: python:PATH、PYTHONPATH 和 sys.path 的区别 PATH 在PATH中的 python module 不能被 import,在 PATH 中的一些命令,例如 *.exe,可以直接在cmd中运行,而不用明确的路径,我们在给 python 安装一些 packages 的时候, 阅读全文
posted @ 2019-04-28 14:31 ibingshan 阅读(7450) 评论(0) 推荐(0) 编辑
摘要: git clean 删除忽略文件 和 未被跟踪文件及文件夹 概念 首先我们需要认清 忽略的文件 和 未被跟踪的文件 忽略的文件:.gitignore 中忽略的文件 未被跟踪的文件:没有被忽略,但是还没 git add 的文件 git clean -f 删除:未被跟踪的文件 git clean -fd 阅读全文
posted @ 2019-04-28 13:48 ibingshan 阅读(5041) 评论(0) 推荐(0) 编辑
摘要: python 判断两个 Path 是否是相同的文件夹 import os os.path.normcase(p1) == os.path.normcase(p2) normcase() 在 windows 系统,会把 path 中的 \ 变为 /,把所有字母变为小写, 在 linux 和 mac 中 阅读全文
posted @ 2019-04-28 09:26 ibingshan 阅读(2072) 评论(0) 推荐(0) 编辑