Untitled

 avatar
unknown
plain_text
a year ago
1.5 kB
8
Indexable
we are doing these following steps for installation of Cmake on linux-
git clone https://github.com/AlexeyAB/darknet
cd darknet
mkdir build_release
cd build_release
cmake ..
cmake --build . --target install --parallel 8

We dont have any CUDA installed on our server, but while running this command- cmake .. as below

Command-

(CAPEANALYTICS) CAPEAIML@GRMUCAPEDEVAPV:~/darknet/build_release> cmake ..

We are getting error as below-

Error-

CMake Warning at CMakeLists.txt:104 (message):
  vcpkg not found, toolchain not defined, system not win32 so build might
  fail


Darknet_VERSION: 0.2.5.7
-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Setting build type to 'Release' as none was specified.
-- Looking for a CUDA compiler
-- Looking for a CUDA compiler - NOTFOUND
-- CUDA_PATH:
-- CUDACXX:
CMake Error at CMakeLists.txt:188 (message):
  CUDA not found, please build explicitly with -DENABLE_CUDA=OFF if you do
  not want CUDA.



Can you help us here.
Editor is loading...
Leave a Comment