Demo can't find its libs
I followed the tutorial but it failed to import cloudstorage. To make it work, I added this to the top of python/demo/main.py:
from google.appengine.ext import vendor
vendor.add('lib')
Hi Nick
I tried your suggestion, and even that didn't work? Where is 'lib'? Is this the folder you are referring to:
/src/cloudstorage/cloudstorage_api
Since I can't find any lib folder?
lib is created when you run the command
pip install GoogleAppEngineCloudStorageClient -t demo/lib
which is step 3 in the tutorial.
Need this
pip install GoogleAppEngineCloudStorageClient -t demo/lib
when there is already a
src/cloudstorage folder? Since cloning the project also has src/cloudstorage..