-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevented a temporary numpy version error for certain versions of opencv2 from occurring.
- Loading branch information
1 parent
d96d223
commit 37a8f31
Showing
7 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
python -m venv sclat-venv | ||
source sclat-venv/bin/activate | ||
pip install -r requirements.txt | ||
deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python -m venv sclat-venv | ||
call sclat-venv\Scripts\activate | ||
pip install -r requirements.txt | ||
deactivate |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
pygame == 2.5.2 | ||
yt_dlp == 2024.8.6 | ||
moviepy == 1.0.3 | ||
chardet == 5.2.0 | ||
pytubefix == 7.1rc2 | ||
pyvidplayer2 == 0.9.24 | ||
opencv-python == 4.6.0.66 | ||
moviepy == 1.0.3 | ||
yt_dlp == 2024.8.6 | ||
opencv-python == 4.5.5.64 | ||
numpy == 1.26.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
source sclat-venv/bin/activate | ||
python ./main.py | ||
deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
call sclat-venv\Scripts\activate | ||
python ./main.py | ||
deactivate |