meta-toolkit / meta

A Modern C++ Data Sciences Toolkit
https://meta-toolkit.org
MIT License
695 stars 236 forks source link

Meta build Failing (v1.3.6) on Mac OS(10.15.4) due to checksum and download error #217

Open welcomemandeep opened 4 years ago

welcomemandeep commented 4 years ago

I am getting a 404 Not Found on running make

[ 86%] Creating directories for 'ceeaus' [ 86%] Performing download step (download, verify and extract) for 'ceeaus' -- verifying file... file='/Users/mgandhi/code/meta-toolkit/meta/build/src/downloads/ceeaus.tar.gz' -- SHA256 hash of /Users/mgandhi/code/meta-toolkit/meta/build/src/downloads/ceeaus.tar.gz does not match expected value expected: '8ea40b32f34e9ae8aedffe562ad468fc465d1cc0ff6a5c3bdf0ee42bb85c231e' actual: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855' -- File already exists but hash mismatch. Removing... -- Downloading... dst='/Users/mgandhi/code/meta-toolkit/meta/build/src/downloads/ceeaus.tar.gz' timeout='none' -- Using src='http://web.engr.illinois.edu/~massung1/files/ceeaus.tar.gz' -- Retrying... -- Using src='http://web.engr.illinois.edu/~massung1/files/ceeaus.tar.gz'

Env details -

OS - Mac OS(10.15.4) Make Version - GNU Make 3.81

Nathan846 commented 4 years ago

I have the same issue here with windows.

welcomemandeep commented 4 years ago

Any update?

subbuballa commented 4 years ago

i'm having a similar error, running the following command

CXX=clang++ cmake ../ -DCMAKE_BUILD_TYPE=Release -DICU_ROOT=/usr/local/opt/icu4c
make

-- Searching for ICU 58.2 CMake Warning (dev) at deps/meta-cmake/FindOrBuildICU.cmake:31 (find_package): Policy CMP0074 is not set: find_package uses _ROOT variables. Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy command to set the policy and suppress this warning.

CMake variable ICU_ROOT is set to:

/usr/local/opt/icu4c

For compatibility, CMake is ignoring the variable. Call Stack (most recent call first): CMakeLists.txt:55 (FindOrBuildICU) This warning is for project developers. Use -Wno-dev to suppress it.

-- ICU version found is 67.1.0, expected 58.2; attempting to build ICU from scratch... -- ICU include dirs: /Users/subbu/Documents/libraries/meta/build/deps/icu-58.2/include -- ICU libraries: icui18n;icuuc;icudata -- Locating libc++... -- Located libc++: /usr/lib/libc++.dylib -- Located libc++ include path: /Library/Developer/CommandLineTools/usr/include/c++/v1/ -- Locating libc++'s abi... -- Found libc++abi: /usr/lib/libc++abi.dylib -- Using jemalloc: /usr/local/lib/libjemalloc.dylib -- Locating libc++experimental library -- Locating libc++experimental library - not found -- No suitable experimental filesystem library found -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- Configuring done -- Generating done -- Build files have been written to: /Users/subbu/Documents/libraries/meta/build [ 1%] Performing download step (download, verify and extract) for 'ExternalICU' -- Downloading... dst='/Users/subbu/Documents/libraries/meta/deps/icu-58.2/icu4c-58_2-src.tgz' timeout='none' -- Using src='http://download.icu-project.org/files/icu4c/58.2/icu4c-58_2-src.tgz' -- [download 100% complete]

make[2]: [deps/icu-58.2/src/ExternalICU-stamp/ExternalICU-download] Error 1 make[1]: [CMakeFiles/ExternalICU.dir/all] Error 2 make: *** [all] Error 2

Skyblueballykid commented 4 years ago

I'm having the same error as @subbuballa on OS - Mac OS(10.15.5) Make Version - GNU Make 3.81

partha117 commented 4 years ago

Having the same issue in Ubuntu 18.04.4

connork18 commented 4 years ago

Having the same issue on Windows 10.0.18362.

Ghost-8D commented 4 years ago

I had the same issue and I spent several days trying to find a solution but after fixing one issue, a new one appeared. I think that we should find an alternative tool for text mining and text analysis as this tool is not supported anymore. Does anybody know any alternatives to META, preferably used with Python?

Metadope commented 4 years ago

I made progress on a workaround for this issue by tracking down the proper icu4c archive, available here (ICU's new home):

https://github.com/unicode-org/icu/releases/download/release-58-2/icu4c-58_2-src.tgz

That file produces the MD5 sum specified in MeTa's CMake config.

It's the right file, but MeTa's dependency needs to be updated (with a newer download URL at the very least).

fplatz commented 3 years ago

I made progress on a workaround for this issue by tracking down the proper icu4c archive, available here (ICU's new home):

https://github.com/unicode-org/icu/releases/download/release-58-2/icu4c-58_2-src.tgz

That file produces the MD5 sum specified in MeTa's CMake config.

It's the right file, but MeTa's dependency needs to be updated (with a newer download URL at the very least).

Hello! I'm new here and do not know, how to install the 58-2 version. Could someone leave a code here for the installation and configuration of icu4u for macOs (10.15.07) ?

Thanks in advanced!

ccasey645 commented 3 years ago

Should be fixed by https://github.com/meta-toolkit/meta/pull/220

mhnaufal commented 3 years ago

Having the same issue on Manjaro 21.1.0

MikeGodin commented 2 years ago

For those who are not familiar with patching and PRs etc, the fix is easy: just edit CMakeLists.txt and change the line: URL http://download.icu-project.org/files/icu4c/58.2/icu4c-58_2-src.tgz to: URL https://github.com/unicode-org/icu/releases/download/release-58-2/icu4c-58_2-src.tgz

dvmorozov commented 2 years ago

https://rationalcity.wordpress.com/2022/10/01/how-to-build-meta-in-docker-container/