Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ycycse committed Sep 30, 2024
1 parent 75fcc56 commit 6f4fdf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iotdb-core/ainode/resources/conf/ainode-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ for i in *.whl *.tar.gz; do
if [[ $i =~ "ainode" ]]; then
echo Installing AINode body: $i
if [ -z "$p_pypi_mirror" ]; then
$ain_interpreter_dir -m pip install "$i" $p_ain_force_reinstall --no-warn-script-location $p_ain_no_dependencies --find-linkshttps://download.pytorch.org/whl/cpu/torch_stable.html
$ain_interpreter_dir -m pip install "$i" $p_ain_force_reinstall --no-warn-script-location $p_ain_no_dependencies --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
else
$ain_interpreter_dir -m pip install "$i" $p_ain_force_reinstall -i $p_pypi_mirror --no-warn-script-location $p_ain_no_dependencies --find-linkshttps://download.pytorch.org/whl/cpu/torch_stable.html
$ain_interpreter_dir -m pip install "$i" $p_ain_force_reinstall -i $p_pypi_mirror --no-warn-script-location $p_ain_no_dependencies --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
fi
else
# if ain_only_ainode is 0 then install dependencies
Expand Down

0 comments on commit 6f4fdf7

Please sign in to comment.