标签: python comments pip
我想在pip要求文件中为几个包添加注释。 (只是为了解释为什么那个包在列表中。)我可以这样做吗?
我在想像
Babel==0.9.5 # translation CherryPy==3.2.0 # web server Creoleparser==0.7.1 # wiki formatting Genshi==0.5.1 # templating
答案 0 :(得分:141)
当然,您可以根据pip docs:
pip
以#开头的行被视为注释并被忽略。空格后跟一个#会导致#和该行的其余部分被视为注释。
继续!
答案 1 :(得分:9)
You can add comments (lines beginning with #)