Hi Jorge, are you trying to edit the settings.py file? You just need to open that in a text editor (IDLE is good) to change those settings, not execute the file, which is what you're trying to do by typing *python settings.py*. That said, I'm not sure why you don't have functools, looks like it's a standard python library. You may want to just create a new virtual environment and reinstall arches there to see if that fixes the issue.
Also, speaking earlier of elasticsearch, I thought I'd mention that it's not in the arches documentation yet, but you can run elasticsearch as a background process (at least you can on linux). That way you don't need to use two command windows, though sometimes it is nice to be able to see what ES is doing. Here is the official elasticsearch documentation: https://www.elastic.co/guide/en/elasticsearch/guide/current/running-elasticsearch.html Just run the normal command with -d added to the end of it, c:\Arches-Projects\gis_hip_app\gis_hip_app\elasticsearch\elasticsearch-1.4.1\bin\elasticsearch -d To double check that there is an elasticsearch instance running now, use this (9200 is the default port for ES) curl localhost:9200 To shutdown the instance, use this curl -XPOST 'http://localhost:9200/_shutdown' I've done this on Linux, but I presume it's the same for Windows too. Adam -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
