Added warning for import error yaml - use venv before use.

This commit is contained in:
raildex1 2017-04-24 19:22:51 +10:00
parent 4862086a01
commit a60faa7fd4
2 changed files with 8 additions and 3 deletions

View file

@ -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

View file

@ -1,3 +1,4 @@
#!/bin/bash -ex
ctf-tools-pip3 uninstall -y nose || true
ctf-tools-pip3 uninstall -y pyyaml || true