зеркало из https://github.com/Azure/aztk.git
12 строки
518 B
Bash
12 строки
518 B
Bash
#!/bin/bash
|
|
|
|
echo "Installing dependencies..." &&
|
|
pip install --force-reinstall --upgrade --user pyyaml==3.12 azure==3.0.0 azure-cli-core==2.0.30 msrestazure==0.4.25 > /dev/null 2>&1 &&
|
|
echo "Finished installing dependencies." &&
|
|
echo "Getting account setup script..." &&
|
|
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.py -O account_setup.py &&
|
|
chmod 755 account_setup.py &&
|
|
echo "Finished getting account setup script." &&
|
|
echo "Running account setup script..." &&
|
|
python3 account_setup.py
|