Merge pull request #13 from chychkan/python-3.8

Add support for Python 3.8
This commit was merged in pull request #13.
This commit is contained in:
Oleksandr Chychkan
2021-07-31 23:21:04 -07:00
committed by GitHub
2 changed files with 19 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
numpy==1.19.5
opencv-python==4.1.2.30
scipy==1.4.1
tensorflow==2.5.0
colorama==0.4.3
tqdm==4.47.0
ffmpeg-python==0.2.0
Pillow==7.2.0
scikit-image==0.17.2
h5py==3.1.0
+9 -1
View File
@@ -15,6 +15,14 @@ fi
source .dfl/env/bin/activate
pip install -r requirements.txt
version=$(python -V | cut -f 2 -d ' ' | cut -f 1,2 -d .)
reqs_file='requirements.txt'
if [[ ! -z "$version" && -f "requirements_$version.txt" ]]; then
reqs_file="requirements_$version.txt"
fi
echo "Using $reqs_file"
pip install -r $reqs_file
echo "Done."