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