Skip to content

Commit

Permalink
SphinxSetup: correct installation from requirements.txt
Browse files Browse the repository at this point in the history
this file isn't in the pwd when setting up Vagrant.
  • Loading branch information
peterbarker authored and Hwurzburg committed Jan 26, 2025
1 parent 7fe6a93 commit d873174
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sphinxsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ python3 get-pip.py
rm -f get-pip.py

# Install required python packages
python3 -m pip install --user --upgrade -r requirements.txt
SCRIPT_DIR=$(dirname $(realpath ${BASH_SOURCE[0]}))
python3 -m pip install --user --upgrade -r "$SCRIPT_DIR"/requirements.txt

# Reset the value of DISPLAY
if grep -qi -E '(Microsoft|WSL)' /proc/version; then
Expand Down

0 comments on commit d873174

Please sign in to comment.