<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| #!/bin/bash | |
| export PYTHON_VERSION=3.6.4 | |
| export PYTHON_DOWNLOAD_URL=https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz | |
| sudo apt update | |
| sudo apt install --no-install-recommends -y \ | |
| gcc libssl-dev \ | |
| python python-dev | |
| cd ~/Downloads |