I am working on Ubuntu 14.04, 32 bit. I am getting this error in my Google App Engine server code:
import cloudstorage
ImportError: No module named cloudstorage
I ran this command to install the GCS module:
pip install GoogleAppEngineCloudStorageClient -t /home/john/software/google_appengine/lib/ --force-reinstall
My coworker installed the cloudstorage module on Windows 7 by simply copying the 'cloudstorage' folder to the GAE/lib folder. Running the code on his PC does not produce ImportError. I also tried this
How can I install the cloudstorage module on Linux to avoid the ImportError?
import cloudstorage
producing the error message "No module named cloudstorage"? Thanks. (By the way, gcutil is deprecated.) – Lindsay