mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
Silence some installation process for build from source (#5396)
This commit is contained in:
parent
4a6ebe69d4
commit
1f8ae17f60
2 changed files with 3 additions and 3 deletions
2
build.sh
2
build.sh
|
@ -100,7 +100,7 @@ pushd "$BUILD_DIR"
|
||||||
# The following line installs pyarrow from S3, these wheels have been
|
# The following line installs pyarrow from S3, these wheels have been
|
||||||
# generated from https://github.com/ray-project/arrow-build from
|
# generated from https://github.com/ray-project/arrow-build from
|
||||||
# the commit listed in the command.
|
# the commit listed in the command.
|
||||||
$PYTHON_EXECUTABLE -m pip install \
|
$PYTHON_EXECUTABLE -m pip install -q \
|
||||||
--target="$ROOT_DIR/python/ray/pyarrow_files" pyarrow==0.14.0.RAY \
|
--target="$ROOT_DIR/python/ray/pyarrow_files" pyarrow==0.14.0.RAY \
|
||||||
--find-links https://s3-us-west-2.amazonaws.com/arrow-wheels/50f14adecbb83228599a2dc57859e4ecbe054b92/index.html
|
--find-links https://s3-us-west-2.amazonaws.com/arrow-wheels/50f14adecbb83228599a2dc57859e4ecbe054b92/index.html
|
||||||
export PYTHON_BIN_PATH="$PYTHON_EXECUTABLE"
|
export PYTHON_BIN_PATH="$PYTHON_EXECUTABLE"
|
||||||
|
|
4
thirdparty/scripts/build_modin.sh
vendored
4
thirdparty/scripts/build_modin.sh
vendored
|
@ -22,8 +22,8 @@ pushd $TP_DIR/../python/ray/
|
||||||
rm -rf modin
|
rm -rf modin
|
||||||
mkdir modin
|
mkdir modin
|
||||||
pushd modin
|
pushd modin
|
||||||
curl -kL "$MODIN_WHEELS_URL$MODIN_WHEELS_FNAME" -o "$MODIN_WHEELS_FNAME"
|
curl -kL --silent "$MODIN_WHEELS_URL$MODIN_WHEELS_FNAME" -o "$MODIN_WHEELS_FNAME"
|
||||||
unzip "$MODIN_WHEELS_FNAME"
|
unzip -qq "$MODIN_WHEELS_FNAME"
|
||||||
rm "$MODIN_WHEELS_FNAME"
|
rm "$MODIN_WHEELS_FNAME"
|
||||||
popd
|
popd
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Add table
Reference in a new issue