Hi Thomas, it sounds like arches and its dependencies did not install properly in your virtual environment. I've come across this problem on my own recently when installing on Windows 10. Is that the operating system you are using? If so, the following may be helpful:
In my case, when I ran pip install arches with the virtual environment activated, errors like this would show up in the console output: WindowsError: [Error 32] The process cannot access the file because it is being used by another process: 'c:\\users\\username\\appdata\\local\\temp\\pip-i6d18f-record\\install-record.txt' After a little searching I figured out that this is caused by an outdated version of pip, which apparently ships with virtualenv (I do have the correct version of virtualenv though, 1.11.4). With the virtualenv activated, try running pip --version. Mine was 1.5.4, and that was the problem. However, after I upgraded pip using this command python -m pip install pip --upgrade I was able to install arches and arches hip with no trouble. I didn't seem to have this issue with Windows 7, but I don't know why... I'd recommend removing your virtual environment (or creating a brand new one) and starting the process from scratch. Hope that helps, Adam On Thursday, March 31, 2016 at 7:26:05 AM UTC-6, Thomas Paffen wrote: > > HI Guys, > > I'm new to arches and just installing it. When i execute the (ENV)$ > python manage.py packages -o setup_elasticsearch command i get the Error > File manage.py, line 22, in <module> > from django.core.management import execute_from_command_line > ImportError: No module named django.core.management > > I've read that the most common issues are that django ist not installed, > but the commands before this one worked (although i had do downgrade form > django 1.9.4 to 1.8.2) > > Maybe you got an idea > > Best, > Thomas > -- -- 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.
