forked from p15670423/monkey
Drop `--system` from `pipenv install` in deploy_linux.sh
The `--system` flag is not necessary when deploying a development environment on linux. It's preferable to install python dependencies in venvs rather than on the system.
This commit is contained in:
parent
df67ba554e
commit
d83fc2e914
|
@ -148,13 +148,13 @@ pipx install pipenv
|
|||
|
||||
log_message "Installing island requirements"
|
||||
pushd $ISLAND_PATH
|
||||
pipenv install --dev --system
|
||||
pipenv install --dev
|
||||
popd
|
||||
|
||||
log_message "Installing monkey requirements"
|
||||
sudo apt-get install -y libffi-dev upx libssl-dev libc++1
|
||||
pushd $INFECTION_MONKEY_DIR
|
||||
pipenv install --dev --system
|
||||
pipenv install --dev
|
||||
popd
|
||||
|
||||
agents=${3:-true}
|
||||
|
|
Loading…
Reference in New Issue