Could you try editing /home/cris/ArchesWeb/Install/install.py with something 
like gedit or vim?

On line 52 it currently says:

# INSTALL DJANGO, RAWES, SPHINX AND OTHER DEPENDENCIES                          
tmpinstalldir = '%s/tmp' % (virtualenv_working_dir)                             
os.system("pip install -b %s -r %s" % (tmpinstalldir, os.path.join(here, 
'requirements.txt')))
shutil.rmtree(tmpinstalldir, True)                                            

Try changing it to (adding the third line):

# INSTALL DJANGO, RAWES, SPHINX AND OTHER DEPENDENCIES                          
tmpinstalldir = '%s/tmp' % (virtualenv_working_dir)                             
os.system("pip install --no-use-wheel -b %s setuptools --upgrade" % 
(tmpinstalldir))
os.system("pip install -b %s -r %s" % (tmpinstalldir, os.path.join(here, 
'requirements.txt')))
shutil.rmtree(tmpinstalldir, True)

If this doesn't work, look for all lines containing pip install (there's one at 
the end of the file as well that says pip install psycopg) and add 
--no-use-wheel.

Alexei, there might still be an issue with the requirements.txt file which pins 
to distribute version 0.6.27.

Cheers,
Koen
________________________________________
Van: [email protected] [[email protected]] namens Van 
Daele, Koen [[email protected]]
Verzonden: maandag 13 januari 2014 10:55
Aan: Tudor Cristina; [email protected]
Onderwerp: RE: [Arches] Error while installing Arches on Ubuntu

Hi,

is this the same problem as you mentioned in 
https://bitbucket.org/archs/arches/issue/363/error-installation-on-ubuntu?

In which case it might be that your installation of django is failing. Is there 
a folder 
'/home/cris/ArchesWeb/virtualenv/ENV/lib/python2.7/site-packages/django'? You 
can check this with the ls command, ie. 'ls 
/home/cris/ArchesWeb/virtualenv/ENV/lib/python2.7/site-packages/django' should 
not say that it does not exist.

Could you check this?

You bitbucket ticket seems to indicate some possible problems with setuptools.

Cheers,
Koen
________________________________________
Van: [email protected] [[email protected]] namens 
Tudor Cristina [[email protected]]u yo
Verzonden: zondag 12 januari 2014 10:45
Aan: [email protected]
Onderwerp: [Arches] Error while installing Arches on Ubuntu

Hi!

I try to install Arches on Ubuntu 12.04 LTS.
I constantly get this error when I enter sudo ./install.sh :

Traceback (most recent call last):
  File "install.py", line 63, in <module>
    shutil.copy2(os.path.join(here, 'base.py'), 
os.path.join(virtualenv_working_dir, 'lib', py_version, 'site-packages', 
'django', 'db', 'backends', 'postgresql_psycopg2'))
  File "/usr/lib/python2.7/shutil.py", line 128, in copy2
    copyfile(src, dst)
  File "/usr/lib/python2.7/shutil.py", line 83, in copyfile
    with open(dst, 'wb') as fdst:
IOError: [Errno 2] No such file or directory: 
'/home/cris/ArchesWeb/virtualenv/ENV/lib/python2.7/site-packages/django/db/backends/postgresql_psycopg2'


How can I solve this problem ? I really don't know how to deal with it.

--
-- 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/groups/opt_out.

--
-- 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/groups/opt_out.

-- 
-- 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/groups/opt_out.

Reply via email to