Use `pip freeze > requirements.txt` to create a file with environment markers?
There are Environment Markers or Requirement Specifiers we can use in requirements.txt
. For example, argparse;python_version<"2.7"
will tell pip to install argparse
only when the python version is less than 2.7.