blob: a577a7ce73d1f96e4d2b5d02263697b022fba4bc (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# All platform-specific before_install scripts starts by running this
# "global" before_install script.
# Configure Python pip
pip3 install --user --upgrade pip
pip3 config --user set global.progress_bar off
pip3 install --user jsonschema
|