Add support for Python 3.8 #13
@@ -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
@@ -15,6 +15,14 @@ fi
|
|||||||
|
|
||||||
source .dfl/env/bin/activate
|
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."
|
echo "Done."
|
||||||
|
|||||||
Reference in New Issue
Block a user