1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Install wheel before NetBox dependencies

This commit is contained in:
Jeremy Stretch
2020-03-06 13:59:19 -05:00
parent 5950bedfae
commit 17c76e413d
3 changed files with 6 additions and 6 deletions

View File

@ -29,9 +29,14 @@ eval $COMMAND || {
# Activate the virtual environment
source "${VIRTUALENV}/bin/activate"
# Install necessary system packages
COMMAND="pip3 install wheel"
echo "Installing Python system packages ($COMMAND)..."
eval $COMMAND || exit 1
# Install Python packages
COMMAND="pip3 install -r requirements.txt"
echo "Installing Python packages ($COMMAND)..."
echo "Installing dependencies ($COMMAND)..."
eval $COMMAND || exit 1
# Apply any database migrations