Can't get it to run due to 'integrity failure'.
See original GitHub issueHi,
I was trying out your project but I’m stuck installing dependencies. I tried the conda installation method but it keeps failing (tried cpu, gpu and osx yamls).
[DEBUG] Loading application... integrity failure
I also think the yaml file here https://github.com/prasunroy/stefann/blob/acac8fec6985e5e651313472738dbf36bbc27199/release/env_cpu.yml#L12 and here is faulty: https://github.com/prasunroy/stefann/blob/acac8fec6985e5e651313472738dbf36bbc27199/release/env_gpu.yml#L12
I guess it should look more like the OSX version with a double ==
and tensorflow below pip.
https://github.com/prasunroy/stefann/blob/acac8fec6985e5e651313472738dbf36bbc27199/release/env_osx.yml#L10-L15
However even when I edit the env_cpu.yaml that way it seems to fail.
It could be related to this issue: https://github.com/tensorflow/tensorflow/issues/37316
but when I tried tensorflow>=2.1.0
it also failed.
Any idea how to solve this? Or is there an alternative way to install it? A docker container maybe?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:10 (4 by maintainers)
Top GitHub Comments
TL;DR
Reinstalling
xcb
apparently fixed the issue. (Source).Short Story Long
Sorry for replying a bit late. I went for a completely fresh install while trying to reproduce the issue. I did it on a old laptop without any NVIDIA GPU i.e. a CPU-based installation.
build-essential
andgit
are already pre-installed in Pop!_OS.xcb
may fix the problem. This fact is further confirmed here.xcb
.On Linux which of the YAML files do you use to run it initially on CPU? I suspect the env_cpu.yml worked for you out of the box? Could you maybe explicitly add the versions to the (still) unversioned dependencies in that file? Potentially that could help but I’m not sure.
I might try to make that environment inside a docker container to see whether that helps but that will be for next month at the earliest. If that works I’ll definitely contribute it here because that would make using it as simple as docker pull and then running it.
Anyway, thanks for your effort if you have any more ideas I can try I’d love to hear it. 😃