Skip to content

Commit

Permalink
Updated sphinx_install.sh script with --no-cache-dir on pip.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Oct 20, 2023
1 parent b541bec commit fae100d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/sphinx_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

export PYTHON=`ls $BUILD_DIR/install/bin/python* | grep -o 'python.*' | head -1 `
if [[ ! -d $BUILD_DIR/install/lib/$PYTHON/site-packages/sphinx ]]; then
run_cmd $BUILD_DIR/install/bin/$PYTHON -m pip install --upgrade pip
run_cmd $BUILD_DIR/install/bin/$PYTHON -m pip install sphinx sphinx_rtd_theme requests urllib3
run_cmd $BUILD_DIR/install/bin/$PYTHON -m pip install --upgrade pip --no-cache-dir
run_cmd $BUILD_DIR/install/bin/$PYTHON -m pip install sphinx sphinx_rtd_theme requests urllib3 --no-cache-dir
fi

0 comments on commit fae100d

Please sign in to comment.