Ubuntu Pastebin

Paste from kissiel at Mon, 5 Dec 2016 17:44:24 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/usr/bin/env bash

virtualenv -p python3 venv
. venv/bin/activate
pip3 install -r requirements.txt -r requirements-devel.txt
./setup.py build
./setup.py install

(cd hellogl && snapcraft clean && snapcraft snap)
ret=$?

deactivate
rm -rf venv
exit $ret
Download as text