https://github.com/duckietown/Software
Raw File
Tip revision: de2fe5b5526b94ed8a5123fdbedd7fdc70afcb2c authored by Liam Paull on 19 October 2017, 22:18:52 UTC
Merge branch 'master' into jmichaux-augmented-reality
Tip revision: de2fe5b
dependencies_for_laptop.sh
#!/bin/bash
set -e
set -x

# Important: always use the python-X library if available,
# rather than doing "pip install X".

sudo apt install -y \
	python-frozendict \
	libxslt-dev \
	libxml2-dev \
	python-lxml \
	python-bs4 \
	python-ruamel.yaml \
	python-ruamel.ordereddict \
	python-tables


pip install --upgrade --user \
	PyContracts \
	QuickApp \
	conftools \
	comptests \
	procgraph \
	pymongo
back to top