mayan-edms.py initialsetup
Traceback (most recent call last):
File "/Users/brian/venv/bin/mayan-edms.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/Users/brian/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 399, in execute_from_command_line
utility.execute()
File "/Users/brian/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 392, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/Users/brian/venv/lib/python2.7/site-packages/django/core/management/base.py", line 242, in run_from_argv
self.execute(*args, **options.__dict__)
File "/Users/brian/venv/lib/python2.7/site-packages/django/core/management/base.py", line 280, in execute
translation.activate('en-us')
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/__init__.py", line 130, in activate
return _trans.activate(language)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 188, in activate
_active.value = translation(language)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 177, in translation
default_translation = _fetch(settings.LANGUAGE_CODE)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 159, in _fetch
app = import_module(appname)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/importlib.py", line 40, in import_module
__import__(name)
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/checkouts/__init__.py", line 6, in <module>
from documents.models import Document
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/documents/__init__.py", line 50, in <module>
from .urls import api_urls
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/documents/urls.py", line 5, in <module>
from .api_views import (APIDocumentView, APIDocumentImageView, APIDocumentListView,
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/documents/api_views.py", line 24, in <module>
from .serializers import (DocumentImageSerializer, DocumentPageSerializer,
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/documents/serializers.py", line 13, in <module>
class DocumentVersionSerializer(serializers.HyperlinkedModelSerializer):
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/documents/serializers.py", line 14, in DocumentVersionSerializer
pages = DocumentPageSerializer(many=True, required=False, read_only=True)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/serializers.py", line 200, in __init__
self.fields = self.get_fields()
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/serializers.py", line 236, in get_fields
default_fields = self.get_default_fields()
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/serializers.py", line 1070, in get_default_fields
fields = super(HyperlinkedModelSerializer, self).get_default_fields()
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/serializers.py", line 718, in get_default_fields
field = self.get_related_field(model_field, related_model, to_many)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/serializers.py", line 1113, in get_related_field
return self._hyperlink_field_class(**kwargs)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/relations.py", line 363, in __init__
super(HyperlinkedRelatedField, self).__init__(*args, **kwargs)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/relations.py", line 59, in __init__
super(RelatedField, self).__init__(*args, **kwargs)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/fields.py", line 275, in __init__
super(WritableField, self).__init__(source=source, label=label, help_text=help_text)
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/fields.py", line 142, in __init__
self.help_text = strip_multiple_choice_msg(smart_text(help_text))
File "/Users/brian/venv/lib/python2.7/site-packages/rest_framework/fields.py", line 112, in strip_multiple_choice_msg
multiple_choice_msg = force_text(multiple_choice_msg)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/encoding.py", line 100, in force_text
s = s.__unicode__()
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/functional.py", line 138, in __text_cast
return func(*self.__args, **self.__kw)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/__init__.py", line 76, in ugettext
return _trans.ugettext(message)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 281, in ugettext
return do_translate(message, 'ugettext')
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 263, in do_translate
_default = translation(settings.LANGUAGE_CODE)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 177, in translation
default_translation = _fetch(settings.LANGUAGE_CODE)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 159, in _fetch
app = import_module(appname)
File "/Users/brian/venv/lib/python2.7/site-packages/django/utils/importlib.py", line 40, in import_module
__import__(name)
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/document_signatures/__init__.py", line 12, in <module>
from django_gpg.runtime import gpg
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/django_gpg/runtime.py", line 11, in <module>
gpg = GPG(keyservers=KEYSERVERS)
File "/Users/brian/venv/lib/python2.7/site-packages/mayan/apps/django_gpg/api.py", line 180, in __init__
self.gpg = gnupg.GPG(**kwargs)
File "/Users/brian/venv/lib/python2.7/site-packages/gnupg.py", line 664, in __init__
p = self._open_subprocess(["--version"])
File "/Users/brian/venv/lib/python2.7/site-packages/gnupg.py", line 712, in _open_subprocess
return Popen(cmd, shell=False, stdin=PIPE, stdout=PIPE, stderr=PIPE)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 709, in __init__
errread, errwrite)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1326, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
--
---
You received this message because you are subscribed to a topic in the Google Groups "Mayan EDMS" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mayan-edms/Pi9MzrCmJHs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mayan-edms+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mayan-edms/Pi9MzrCmJHs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mayan-edms+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.