We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26be3eb commit a516abdCopy full SHA for a516abd
py-deps
@@ -27,9 +27,14 @@ FindRequirements() {
27
sed -i -e 's/^PIL$/pillow/g' py-imports-clean
28
# replace sklearn with scikit-learn
29
sed -i -e 's/^sklearn$/scikit-learn/g' py-imports-clean
30
+ # replace cv2 with opencv
31
+ sed -i -e 's/^cv2/opencv/g' py-imports-clean
32
33
+ # Python system packages assembled from here: https://docs.python.org/3/library/index.html
34
+ # Need to not install these, since python/pip will error out :(
35
set_difference py-imports-clean py-system-pkgs > py-imports-install
36
37
+ # Remove temp files created when assembling packages
38
rm py-imports py-imports-clean
39
mv py-imports-install requirements.txt
40
}
0 commit comments