-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71353ed
commit eb42423
Showing
3 changed files
with
25 additions
and
0 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
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,23 @@ | ||
YOLOV8_DIR=/data/yolov8 | ||
|
||
git clone https://github.com/deepghs/yolov8.git ${YOLOV8_DIR} | ||
cd ${YOLOV8_DIR} | ||
|
||
conda create -n yolov8 python=3.10 cudnn cuda-cudart libcufft -y | ||
source activate yolov8 | ||
pip install -r requirements.txt | ||
pip install -r requirements-onnx.txt | ||
pip install -U dghs-imgutils onnxruntime onnxslim | ||
conda info | ||
python --version | ||
pip list | ||
|
||
conda deactivate | ||
conda create -n yolov8raw python=3.10 cudnn cuda-cudart libcufft -y | ||
source activate yolov8raw | ||
pip install -r requirements-raw.txt | ||
pip install -r requirements-onnx.txt | ||
pip install -U dghs-imgutils onnxruntime onnxslim | ||
conda info | ||
python --version | ||
pip list |