Last active
June 12, 2019 10:38
-
-
Save adujardin/aa9516c99a538516a249fe6e2c62afde to your computer and use it in GitHub Desktop.
nvcc issue repo script
This file contains hidden or 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
# docker run -it nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04 bash | |
# then inside the image : | |
apt update ; apt install git cmake libopencv-dev -y | |
git clone https://github.com/AlexeyAB/darknet.git ; cd darknet | |
git checkout 378d49e1c33cc8c064cb27c99815de0698b2ad93 | |
mkdir build_cmake; cd build_cmake; cmake .. | |
make -j4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment