forked from Deuxfleurs/mknet
prepare: fix venv sourcing when /bin/sh is Dash (e.g. on Debian)
This commit is contained in:
parent
12a50ef2db
commit
d1c659924a
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ os.chdir(me)
|
|||
print("--- install python dependencies ---")
|
||||
venv.create(".venv", with_pip=True)
|
||||
shared.exec("""
|
||||
source .venv/bin/activate
|
||||
. .venv/bin/activate
|
||||
which python3
|
||||
python3 -m pip install .
|
||||
python3 -m pip install -r scenarios/requirements.txt
|
||||
|
@ -36,6 +36,6 @@ flavor.download()
|
|||
print(f"""done! now, run:
|
||||
> sudo -i
|
||||
> cd {os.getcwd()}
|
||||
> source ./.venv/bin/activate
|
||||
> . ./.venv/bin/activate
|
||||
> ./mknet scenario ./topo/with-vdsl.yml ./scenarios/garage-s3lat garage-v0.8
|
||||
""")
|
||||
|
|
Loading…
Reference in a new issue