mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 02:09:11 +00:00
Added warning for import error yaml - use venv before use.
This commit is contained in:
parent
4862086a01
commit
a60faa7fd4
2 changed files with 8 additions and 3 deletions
|
@ -1,10 +1,14 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
ctf-tools-pip3 install --upgrade nose
|
||||
ctf-tools-pip3 install --upgrade pyyaml
|
||||
#move to ctftools virtual env - warning you'll have to activate the
|
||||
#virtualenv to use the scripts unless you install the pypl packages
|
||||
#outside the venv for Python 3
|
||||
source ctf-tools-venv-activate3
|
||||
|
||||
pip install --upgrade nose
|
||||
pip install --upgrade pyyaml
|
||||
|
||||
git clone --recursive https://github.com/pfalcon/ScratchABlock
|
||||
source ctf-tools-venv-activate3
|
||||
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
ctf-tools-pip3 uninstall -y nose || true
|
||||
ctf-tools-pip3 uninstall -y pyyaml || true
|
||||
|
|
Loading…
Reference in a new issue