IBM / powerai

This repo contains ancillary information used to assist users of IBM Watson Machine Learning Community Edition. This repo will contain How To's, Readme's, Dockerfiles, etc. that can be consumed by users looking to get started.
BSD 2-Clause "Simplified" License
56 stars 54 forks source link

Fix ray rpath errors #246

Open wdirons opened 4 years ago

wdirons commented 4 years ago

Bazel creates the build artifacts without the user having write access to the file, when conda tries to modify the rpath it gets a permission denied error. To fix this problem we do a chmod -R u+w $PREFIX as the last steps of the build.sh script.

To solve the issue of python_abi being added as a dependency, had to remove conda-forge from the config files. Using python from conda-forge causes the python_abi dependency to get added. Reordered the channel sources to the order we want.

Using the common build process, removed the build_scripts in ray-feedstock.

den-run-ai commented 4 years ago

@wdirons @jayfurmanek any idea how to resolve this problem with Ray installation?

https://github.com/IBM/powerai/issues/272

wdirons commented 4 years ago

@denfromufa , I'm no longer working on Power, but if @jayfurmanek can resolve the Travis build timeout problem so it builds then this PR can be merged to fix in the error.