We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4862086 commit a60faa7Copy full SHA for a60faa7
scratchablock/install
@@ -1,10 +1,14 @@
1
#!/bin/bash -ex
2
3
-ctf-tools-pip3 install --upgrade nose
4
-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
5
+#outside the venv for Python 3
6
+source ctf-tools-venv-activate3
7
+
8
+pip install --upgrade nose
9
+pip install --upgrade pyyaml
10
11
git clone --recursive https://github.com/pfalcon/ScratchABlock
-source ctf-tools-venv-activate3
12
13
mkdir -p bin
14
cd bin
scratchablock/uninstall
@@ -1,3 +1,4 @@
ctf-tools-pip3 uninstall -y nose || true
+ctf-tools-pip3 uninstall -y pyyaml || true
0 commit comments