Last active
September 27, 2023 11:52
-
-
Save starkfell/28fe840a3e686ab9d5edd57038561bff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # wget -O - {URL} | bash | |
| apt-get update -fq && \ | |
| apt-get install -q openssl libffi python clang make && \ | |
| apt-get install -q openssh nano && \ | |
| pip install --user virtualenv | |
| cat << EOF > ~/.bashrc | |
| PATH=$PATH:~/.local/bin | |
| export PATH | |
| EOF | |
| source ~/.bashrc | |
| virtualenv ~/.local/lib/azure-cli | |
| cd ~/.local/lib/azure-cli | |
| source ./bin/activate | |
| pip install cffi | |
| pip install azure-cli | |
| pip freeze > requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will this work for both 32 bit and 64 bit device?