[Arches] Issues installing v4 on osx

2017-04-20 Thread Darcy Christ
I'm having trouble installing v4 on osx. I am using the installer, but I am having an issue with how my system seems to be set up. Can anyone help me? Darcy Here is where it errors: gcc -fno-strict-aliasing -arch x86_64 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes

Re: [Arches] Arches v4 Instalation description and errors

2017-04-20 Thread Vencislav Pirinski
Hello, I am continuing the installation with setting up apache, but again errors arise. I follow the guide from Github, Making Arches production ready. I install apache and wsgi: sudo apt-get install apache2 sudo apt-get install libapache2-mod-wsgi No errors while installing. Next i edit

Re: [Arches] TypeError: sequence item 0: expected string, datetime.datetime

2017-04-20 Thread Alexei Peters
Wonderful! On Apr 19, 2017 11:44 PM, "Darcy Christ" wrote: > Perfect, Alexei. That worked like a charm! > > > > Darcy W. Christ > Digital Generalist > @1000camels > > > > On Apr 20, 2017, at 4:36 PM, Alexei Peters wrote: > > Hi Darcy, > Changing line

Re: [Arches] TypeError: sequence item 0: expected string, datetime.datetime

2017-04-20 Thread Darcy Christ
Perfect, Alexei. That worked like a charm! Darcy W. Christ Digital Generalist @1000camels > On Apr 20, 2017, at 4:36 PM, Alexei Peters wrote: > > Hi Darcy, > Changing line 191 in > "/home/hkarches/lib/python2.7/site-packages/arches_hip/models/resource.py" > > from

Re: [Arches] TypeError: sequence item 0: expected string, datetime.datetime

2017-04-20 Thread Alexei Peters
Hi Darcy, Changing line 191 in "/home/hkarches/lib/python2.7/site-packages/arches_hip/models/resource.py" from this: entity_data.append(node.value) to this: entity_data.append(str(node.value)) should fix the issue you're seeing. This is only temporary as nothing has been pushed to the HIP repo