Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Sep 27, 2024
1 parent 2c8a35f commit 310c433
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/graphscope/gsctl/scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,11 @@ install_vineyard() {
-DBUILD_VINEYARD_GRAPH_WITH_GAR=${BUILD_VINEYARD_GRAPH_WITH_GAR}
make -j$(nproc)
make install
strip "${V6D_PREFIX}"/bin/vineyard* "${V6D_PREFIX}"/lib/libvineyard*
if [[ "${OS_PLATFORM}" == *"Darwin"* ]]; then
strip "${V6D_PREFIX}"/bin/vineyard*
else
strip "${V6D_PREFIX}"/bin/vineyard* "${V6D_PREFIX}"/lib/libvineyard*
fi
pip3 install --no-cache -i https://pypi.org/simple -U "vineyard" "vineyard-io"
cp -rs "${V6D_PREFIX}"/* "${install_prefix}"/
set +e
Expand Down

0 comments on commit 310c433

Please sign in to comment.