Installation of azure-cli-find with pip fails on Ubuntu 14.04.4 LTS
See original GitHub issueEnvironment summary
Install Method: How did you install the CLI? (e.g. pip, interactive script, apt-get, Docker, MSI, nightly)
pip install azure-cli-find --user
OS Version: What OS and version are you using?
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.4 LTS
Release: 14.04
Codename: trusty
Shell Type: What shell are you using? (e.g. bash, cmd.exe, Bash on Windows)
Bash on Windows
Description
Installation of azure-cli-find with pip fails on Ubuntu 14.04.4 LTS. Error message is this:
$ pip install azure-cli-find --user
Downloading/unpacking azure-cli-find
Could not find a version that satisfies the requirement azure-cli-find (from versions: 0.0.1b1, 0.0.1b1)
Cleaning up...
No distributions matching the version for azure-cli-find
Storing debug log for failure in /tmp/tmpJAUOdK
cat /tmp/tmpJAUOdK
------------------------------------------------------------
/usr/bin/pip run on Fri Apr 14 21:06:12 2017
Downloading/unpacking azure-cli-find
Getting page https://pypi.python.org/simple/azure-cli-find/
URLs to search for versions for azure-cli-find:
* https://pypi.python.org/simple/azure-cli-find/
Analyzing links from page https://pypi.python.org/simple/azure-cli-find/
Found link https://pypi.python.org/packages/7a/16/4d210f6b1690aea9e390e30fbacb7042920b34fb22a2e5dc09df83582357/azure_cli_find-0.0.1b1-py2.py3-none-any.whl#md5=d15b733391cd13f8149532e2a07d5ee0 (from https://pypi.python.org/simple/azure-cli-find/), version: 0.0.1b1
Found link https://pypi.python.org/packages/f0/7a/7017494632e641c4239034ee209073e4e79fdcf738c7be900cc1888e99a5/azure-cli-find-0.0.1b1.tar.gz#md5=825c34507615738f44af59d99fcca12d (from https://pypi.python.org/simple/azure-cli-find/), version: 0.0.1b1
Ignoring link https://pypi.python.org/packages/7a/16/4d210f6b1690aea9e390e30fbacb7042920b34fb22a2e5dc09df83582357/azure_cli_find-0.0.1b1-py2.py3-none-any.whl#md5=d15b733391cd13f8149532e2a07d5ee0 (from https://pypi.python.org/simple/azure-cli-find/), version 0.0.1b1 is a pre-release (use --pre to allow).
Ignoring link https://pypi.python.org/packages/f0/7a/7017494632e641c4239034ee209073e4e79fdcf738c7be900cc1888e99a5/azure-cli-find-0.0.1b1.tar.gz#md5=825c34507615738f44af59d99fcca12d (from https://pypi.python.org/simple/azure-cli-find/), version 0.0.1b1 is a pre-release (use --pre to allow).
Could not find a version that satisfies the requirement azure-cli-find (from versions: 0.0.1b1, 0.0.1b1)
Cleaning up...
Removing temporary dir /tmp/pip_build_yoichika...
No distributions matching the version for azure-cli-find
Exception information:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
status = self.run(options, args)
File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 278, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1178, in prepare_files
url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
File "/usr/lib/python2.7/dist-packages/pip/index.py", line 322, in find_requirement
raise DistributionNotFound('No distributions matching the version for %s' % req)
DistributionNotFound: No distributions matching the version for azure-cli-find
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Pip install --azure-cli fails on Ubuntu 14.04 #2366 - GitHub
Steps to reproduce: Create a new VM. az vm create -g ${project_id} -n ${vm_name} --admin-username deploy --image UbuntuLTS ...
Read more >error while installing packages opensubmit ubuntu 14.04 LTS
The error was removed by installing python-dev in Ubuntu 14.04. python-dev is a dependency of a package that is recommended by python-pip in ......
Read more >Unable to install pip on Ubuntu 14.04 - python - Stack Overflow
Is the website I linked an appropriate way of installing pip, and if so how do I resolve my permissions error? I'm using...
Read more >How to Install Pip on Ubuntu 14.04 LTS - Liquid Web
In this quick tutorial, we teach you what is Pip and provide an easy two-step process to install this helpful Python manager.
Read more >Install python3.6, pip3.6, pipenv on Ubuntu 14.04 LTS
Install python3.6, pip3.6, pipenv on Ubuntu 14.04 LTS ... Step 2.1: Download pip; Step 2.2: Execute; Step 2.3: If you Got below error....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Use --pre to allow the install of this module as it’s currently marked as prerelease (b1). That should work. In the next release of this module (next week) I’ll change the version to 0.0.2 so the --pre flag is no longer needed.
Problem solved.