I am writing after a lot of searching and trial and error with no luck.
I am trying to deploy a service in app engine. You might be aware that deploying on app engine is usually practiced a two step process 1. Deploy on local dev app server 2. If step 1 succeeds deploy on cloud
My problems are with step 1 when I include third party python libraries such as numpy, sklearn, gcloud etc.
I am trying to deploy a service in local devapp server. When I import numpy or any other third party libraries in my main.py script it throws an error saying unable to find the module.
I am using cloud sdk and have two python distributions, the default python 2.7 and anaconda with python 2.7. When I change the path to look for the modules in anaconda distribution, it fails to find module ‘setup’ required by the cloud sdk.
Is there a way to install the cloud sdk for anaconda distribution ?
Any help/pointers will be much appreciated!
C:\Users\<myusername>\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin>python dev_appserver.py C:\<folder_with_main_and_app_yaml_files>- sumoka