google app engine - No matching distribution found for antlr-python-runtime -
pip install google_appengine collecting google-appengine using cached google-appengine-1.5.1.tar.gz collecting pyyaml (from google-appengine) using cached pyyaml-3.11.tar.gz collecting webob==0.9 (from google-appengine) using cached webob-0.9.tar.gz collecting ipaddr (from google-appengine) using cached ipaddr-2.1.11.tar.gz collecting antlr-python-runtime (from google-appengine) not find version satisfies requirement antlr-python-runtime (from google-appengine) (from versions: ) no matching distribution found antlr-python-runtime (from google-appengine)
pip shows available doesn't install it:
pip search antlr antlr4-python-alt - alternative python runtime antlr 4 antlr_python_runtime - runtime package antlr3 antlr4-python3-runtime - antlr 4.5.2.1 runtime python 3.4.0 antlr4-python2-runtime - antlr 4.5.2.1 runtime python 2.7.6 installed: 4.5.2.1 (latest) pip install antlr_python_runtime collecting antlr-python-runtime not find version satisfies requirement antlr-python-runtime (from versions: ) no matching distribution found antlr-python-runtime
antlr4-python2-runtime
installed seems not enough:
pip install antlr4-python2-runtime requirement satisfied (use --upgrade upgrade): antlr4-python2-runtime
this issue suggests install --allow-unverified
, --allow-external
both arguments don't work in latest version of pip (8.0.2) anymore.
any appreciated.
pip seems stuck on older 1.5.1 version of appengine @ , looking bad antrl-python-runtime. looks in : https://pypi.python.org/simple/antlr-python-runtime/ contains no links anymore.
antlr seems have moved called pip via
pip install antlr4_python2_runtime
for right now, think instead of using pip, brew cask best package manager method of obtaining googleappengine 1.9
brew cask install googleappengine
Comments
Post a Comment