2016-02-17 19:36:20 +03:00
|
|
|
Microsoft Azure Command-Line Tools
|
|
|
|
==================================
|
|
|
|
|
2016-03-15 23:17:23 +03:00
|
|
|
This is the Microsoft Azure CLI.
|
2016-02-17 19:36:20 +03:00
|
|
|
|
|
|
|
This package has [not] been tested [much] with Python 2.7, 3.4 and 3.5.
|
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
2016-04-20 23:01:49 +03:00
|
|
|
cURL Installation
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
To install via cURL on Linux, Unix and OS X, type:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
2016-04-28 20:49:26 +03:00
|
|
|
curl http://azure-cli-nightly.westus.cloudapp.azure.com/install | bash
|
2016-04-20 23:01:49 +03:00
|
|
|
|
2016-04-21 04:26:59 +03:00
|
|
|
If you chose to enable tab completion, type `exec -l $SHELL` to restart your shell.
|
|
|
|
|
2016-04-20 23:05:00 +03:00
|
|
|
Note: This will install the latest nightly builds.
|
2016-04-20 23:01:49 +03:00
|
|
|
|
2016-04-21 02:42:56 +03:00
|
|
|
**Errors on install with cffi or cryptography:**
|
|
|
|
|
|
|
|
If you get errors on install on **OS X**, upgrade pip by typing:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
pip install --upgrade --force-reinstall pip
|
|
|
|
|
|
|
|
|
|
|
|
If you get errors on install on **Debian or Ubuntu** such as the examples below,
|
2016-04-28 20:18:02 +03:00
|
|
|
install libssl-dev and libffi-dev by typing:
|
2016-04-20 23:01:49 +03:00
|
|
|
|
|
|
|
.. code:: shell
|
2016-04-20 23:05:00 +03:00
|
|
|
|
2016-04-20 23:01:49 +03:00
|
|
|
sudo apt-get update
|
2016-04-28 20:18:02 +03:00
|
|
|
sudo apt-get install -y libssl-dev libffi-dev
|
2016-04-28 03:31:43 +03:00
|
|
|
|
|
|
|
Also install Python Dev for your version of Python.
|
|
|
|
|
|
|
|
Python 2:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
sudo apt-get install -y python-dev
|
|
|
|
|
|
|
|
Python 3:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
sudo apt-get install -y python3-dev
|
2016-04-20 23:01:49 +03:00
|
|
|
|
2016-04-28 20:18:02 +03:00
|
|
|
Ubuntu 15 may require `build-essential` also:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
sudo apt-get install -y build-essential
|
|
|
|
|
2016-04-20 23:05:00 +03:00
|
|
|
|
|
|
|
**Example Errors**
|
2016-04-20 23:01:49 +03:00
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
Downloading cffi-1.5.2.tar.gz (388kB)
|
2016-04-21 02:42:56 +03:00
|
|
|
100% |################################| 389kB 3.9MB/s
|
2016-04-20 23:01:49 +03:00
|
|
|
Complete output from command python setup.py egg_info:
|
|
|
|
|
|
|
|
No working compiler found, or bogus compiler options
|
|
|
|
passed to the compiler from Python's distutils module.
|
|
|
|
See the error messages above.
|
|
|
|
(If they are about -mno-fused-madd and you are on OS/X 10.8,
|
|
|
|
see http://stackoverflow.com/questions/22313407/ .)
|
|
|
|
|
|
|
|
----------------------------------------
|
|
|
|
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-77i2fido/cffi/
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
#include <openssl/e_os2.h>
|
|
|
|
^
|
|
|
|
compilation terminated.
|
|
|
|
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
|
|
|
|
|
|
|
|
Failed building wheel for cryptography
|
|
|
|
|
2016-04-21 02:42:56 +03:00
|
|
|
`See Stack Overflow question - Failed to install Python Cryptography package with PIP and setup.py <http://stackoverflow.com/questions/22073516/failed-to-install-python-cryptography-package-with-pip-and-setup-py>`__
|
|
|
|
|
2016-04-20 23:01:49 +03:00
|
|
|
|
2016-02-17 19:36:20 +03:00
|
|
|
Download Package
|
|
|
|
----------------
|
|
|
|
|
|
|
|
To install via the Python Package Index (PyPI), type:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
pip install azure-cli
|
|
|
|
|
|
|
|
|
|
|
|
Download Source Code
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
To get the source code of the SDK via **git** type:
|
|
|
|
|
|
|
|
.. code:: shell
|
|
|
|
|
|
|
|
git clone https://github.com/Azure/azure-cli.git
|
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
=====
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Need Help?
|
|
|
|
==========
|
|
|
|
|
|
|
|
Be sure to check out the Microsoft Azure `Developer Forums on Stack
|
|
|
|
Overflow <http://go.microsoft.com/fwlink/?LinkId=234489>`__ if you have
|
|
|
|
trouble with the provided code.
|
|
|
|
|
|
|
|
|
|
|
|
Contribute Code or Provide Feedback
|
|
|
|
===================================
|
|
|
|
|
|
|
|
If you would like to become an active contributor to this project please
|
|
|
|
follow the instructions provided in `Microsoft Azure Projects
|
|
|
|
Contribution
|
|
|
|
Guidelines <http://azure.github.io/guidelines.html>`__.
|
|
|
|
|
|
|
|
If you encounter any bugs with the tool please file an issue in the
|
|
|
|
`Issues <https://github.com/Azure/azure-cli/issues>`__
|
|
|
|
section of the project.
|
|
|
|
|
|
|
|
|
|
|
|
Learn More
|
|
|
|
==========
|
|
|
|
|
|
|
|
`Microsoft Azure Python Developer
|
|
|
|
Center <http://azure.microsoft.com/en-us/develop/python/>`__
|