Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python installing Google App Engine through pip

I tried to follow askubuntu answer and install Google App Engine module for python using pip. This seems cleaner for me than downloading raw files and adding PATH export to bashrc.

So I tried:

tomasz@tomasz-lenovo-ideapad-Y530:~$ sudo pip install appengine.py
[sudo] password for tomasz: 
Downloading/unpacking appengine.py
  Could not find any downloads that satisfy the requirement appengine.py
No distributions at all found for appengine.py
Storing complete log in /home/tomasz/.pip/pip.log

and it failed. I don't know what's wrong, because the appengine module is available: https://pypi.python.org/pypi/appengine. Can anyone point me what am I doing wrong?

like image 827
ducin Avatar asked Jan 05 '14 20:01

ducin


1 Answers

Try using

    sudo pip install appengine

instead. Basically, don't add the .py at the end.

like image 51
tabchas Avatar answered Oct 02 '22 18:10

tabchas