PABannier / bark.cpp

Suno AI's Bark model in C/C++ for fast text-to-speech
MIT License
671 stars 52 forks source link

Colab doesn't start - Encodec.cpp seems to lack CMakeLists.txt #184

Open yeswecan opened 1 month ago

yeswecan commented 1 month ago

Here's the error I get when I run the first cell of the colab:

/content/bark.cpp
/content/bark.cpp/build
-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- 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
CMake Error at CMakeLists.txt:21 (add_subdirectory):
  The source directory

    /content/bark.cpp/encodec.cpp

  does not contain a CMakeLists.txt file.

-- Configuring incomplete, errors occurred!
gmake: Makefile: No such file or directory
gmake: *** No rule to make target 'Makefile'.  Stop.
johnwick123f commented 1 month ago

Yep same exact error!

Green-Sky commented 1 month ago

looks like the git submodule was not initialized, either clone recursively or run git submodules update --init

johnwick123f commented 4 weeks ago

Yeah that solved it, thanks!