Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-24 Thread guido cimadomo
Hi Cyrus and Adam, first of all thank you for the broader explications, as they sometimes help to understand what we are doing and not just asking to repeat code strings... running GDALINFO I was able to track that Visual C++ 2015 Redistributable was not correctly installed on my system, due

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-23 Thread Cyrus Hiatt
Hey Adam - thanks for looking into that. -- -- To post, send email to archesproject@googlegroups.com. To unsubscribe, send email to archesproject+unsubscr...@googlegroups.com. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-23 Thread Adam Cox
Hi Cyrus and Guido, I did a little bit of testing, and running Arches from stable/4.1.x I get the following errors in the following circumstances. GDAL_LIBRARY_PATH is commented out (i.e. isn't set at all): django.core.exceptions.ImproperlyConfigured: Could not find the GDAL library (tried

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-23 Thread Cyrus Hiatt
Hi Guido - Just to clarify the install elasticsearch command basically downloads elasticsearch and modifies the configs. You could do it manually if you wanted to by downloading it here: https://www.elastic.co/downloads/past-releases/elasticsearch-5-1-2 The elasticsearch that you see in `pip

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-22 Thread guido cimadomo
Hi Cyrus, I added that line to projects/my_project/my_project/settings.py file I still have the same error WindowsError: [Error 193] %1 no es una aplicaci¾n Win32 vßlida at the same point of the elasticsearch install process. I have to mention that I tried both to install elasticsearch over the

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-22 Thread Cyrus Hiatt
Hi Guido - It looks like you may need to specify GDAL's location in your settings. In you're package's settings.py file, add the following setting (but be sure to update the path to reflect the location of your GDAL installation's dll file). GDAL_LIBRARY_PATH = "C:/OSGeo4W64/bin/gdal201.dll"

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-22 Thread guido cimadomo
Thank you Cyrus, after running pip install -r path/to/requirements.txt I found I hadn't the required MS Visual C++ Compiler for Python 2.7 installed. I was then able to run again your suggested command without errors. Now django-guardian 1.4.9 is installed in the virtualenvironment, together

Re: [Arches] Elasticsearch install error [Win7 64bit]

2018-04-21 Thread Cyrus Hiatt
Hi Guido - It's strange that the python elasticsearch bindings got installed, but not guardian (looking at the import error at the end of your stack trace). I would try activating my virtualenv and reinstalling my python dependencies from the requirements file in arches: (ENV) $ pip install -r