-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing Audiveris on Nvidia Jetson TX2 #251
Comments
Gradle is trying to load archives with names ending by "-linux-null.jar" See these lines in build.gradle file, starting line 15:
Could you check the values you get in your environment for system properties "os.name" and "os.arch" |
Mind the fact that, for tesseract and for leptonica which are native programs (not Java), we need both the java interface and the binary library (which depends on your OS name and architecture). |
Thanks! If I do have the jar files local for tesseract and leptonica can I point Gradle to those rater than out to https://jcenter.bintray.com/org/bytedeco/javacpp-presets/tesseract/3.04.01-1.3/ Also, thanks for the quick response! Thanks Again! Kyle |
This is related to #199. You'll need to provide the appropriate mapping for the currently unsupported Try to uncomment this line and place it before jcenter(): Line 70 in 6780b1f
I cannot say for sure if it will work though. |
@kyle-redyeti Any progress? |
I'm not the OP but i tried to build audiveris on an arm64 chromebook. |
Yes, that's true.
That's also true but fixable. Only need to add the appropriate architecture and compile Javacpp-presets from source. Regarding Tesseract 4.x support, we have to stuck to the legacy OCR engine due to various issues with the state-of-the-art LSTM engine, see #273. |
FYI Leptonica linux-arm64 has been added and will be released soon. |
It works, see #273 (comment) |
I am having issues getting Audiveris to install on the Nvidia development board. It is a bit of an odd mix of hardware and software. It is Ubuntu 16.04 and it is arm64. I have been able to install Tesseract 3.04.1 with leptonica-1.73 on the device but when I am trying to run the gradle script it wants to pull the jars from a repo and I see the following errors...
[ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > Could not find tesseract-linux-null.jar (org.bytedeco.javacpp-presets:tesseract:3.04.01-1.3).
[ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > Could not find leptonica-linux-null.jar (org.bytedeco.javacpp-presets:leptonica:1.73-1.3).
my computer shows...
tesseract --version
tesseract 3.04.01
leptonica-1.73
libgif 5.1.2 : libjpeg 8d (libjpeg-turbo 1.4.2) : libpng 1.2.54 : libtiff 4.0.6 : zlib 1.2.8 : libwebp 0.4.4 : libopenjp2 2.1.2
Is there a way to modify the gradle script to point to these local versions?
Thanks!
Kyle
The text was updated successfully, but these errors were encountered: