Please to be clear, the error is not "xcode-select --install". As far as I know, the error message is a Compilation error building pycrypto-2.6.1. Using xcode-select --install is just a way to fix such types of errors when in an OSX environment. Apparently, that is not your environment as you confirmed using a Windows environment.
That being said, in a Windows environment, there might be a number of reasons for this error and different steps suggested on this GitHub thread[1] I suggest you try the steps suggested and ensure that you are running the appropriate Python Version. Meanwhile, one of my colleagues successfully deployed the CourseBuilder to a GCE VM by following the following steps below. I am hopeful the steps would be helpful to those trying to deploy the CourseBuilder to a VM environment: 1. Create a Compute Engine instance with the machine type “n1-standard-1”, the default image and the “Allow full access to all Cloud APIs” option enabled. 2. Connect to the instance, and use the command “sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get install unzip && sudo apt-get install -y python-dev && sudo apt-get install -y git && sudo apt-get install -y build-essential manpages-dev”. Note that this command may need some time, and will ask for some prompts. 3. At a point, you should encounter a blue screen, inside said screen select the second option, then the first option, and finally “yes”. Run the command “wget https://github.com/google/coursebuilder-releases/blob/master/coursebuilder_1.11.001.zip?raw=true && unzip coursebuilder_1.11.001.zip\?raw\=true” in order to download and unzip the coursebuilder information. 4. Run the command “bash coursebuilder/scripts/common.sh”. 5. After this, run the command “wget https://curl.haxx.se/ca/cacert.pem -O coursebuilder_resources_1_11_001/runtime/google_appengine/lib/httplib2/httplib2/cacerts.txt” in order to get a new certificate for Coursebuilder. 6. Finally, run the command “bash ./coursebuilder/scripts/deploy.sh exploretice --noauth_local_webserver”. It is possible that you may be prompted to open a link in a browser in order to authorize this operation. [1]https://github.com/google/coursebuilder-core/issues/11 On Tuesday, May 19, 2020 at 7:26:52 AM UTC-4, Massage School wrote: > > Yes, you are right ! But under windows platform, it still shows the same > error message; xcode-select --install > How can I solve this problem ? Please advise. > > Thanks > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/846231ba-8e2f-4af3-a97e-9e4d7af0a46c%40googlegroups.com.
