django-swiftbrowser icon indicating copy to clipboard operation
django-swiftbrowser copied to clipboard

Centos Installation

Open sudharani-m opened this issue 8 years ago • 7 comments

Hello,

I have installed this bundle on centos machine.

  1. Do i need to install swift client before installing this package
  2. What should be content of swiftbrowser.settings?

sudharani-m avatar Dec 13 '16 11:12 sudharani-m

Can anyone help me here?

sudharani-m avatar Dec 15 '16 14:12 sudharani-m

Swift client needs to be installed.

Setting files should have information about auth URL and controller node details of your open stack installation

Sent from my iPhone

On 15-Dec-2016, at 8:06 PM, sudharani-m <[email protected]mailto:[email protected]> wrote:

Can anyone help me here?

You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/cschwede/django-swiftbrowser/issues/29#issuecomment-267342228, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AIQSAir3nAq1IXAGsk78wAwF2oWoQACHks5rIVBYgaJpZM4LLo8h.

manoj-ms avatar Dec 15 '16 15:12 manoj-ms

Hi Manoj, I tired different options. My url.py I have updated to include swift urls. However I getting import error. Pls can you help me here?

from django.conf.urls import url from django.contrib import admin

urlpatterns = [ url(r'^admin/', admin.site.urls, swiftbrowser.urls), ]

import swiftbrowser.urls urlpatterns = [ url(r'^', include(swiftbrowser.urls), ]

python manage.py runserver Performing system checks...

Unhandled exception in thread started by <function wrapper at 0x7f08956d30c8> Traceback (most recent call last): File "/usr/lib64/python2.7/site-packages/django/utils/autoreload.py", line 226, in wrapper fn(*args, **kwargs) File "/usr/lib64/python2.7/site-packages/django/core/management/commands/runserver.py", line 121, in inner_run self.check(display_num_errors=True) File "/usr/lib64/python2.7/site-packages/django/core/management/base.py", line 374, in check include_deployment_checks=include_deployment_checks, File "/usr/lib64/python2.7/site-packages/django/core/management/base.py", line 361, in _run_checks return checks.run_checks(**kwargs) File "/usr/lib64/python2.7/site-packages/django/core/checks/registry.py", line 81, in run_checks new_errors = check(app_configs=app_configs) File "/usr/lib64/python2.7/site-packages/django/core/checks/urls.py", line 14, in check_url_config return check_resolver(resolver) File "/usr/lib64/python2.7/site-packages/django/core/checks/urls.py", line 24, in check_resolver for pattern in resolver.url_patterns: File "/usr/lib64/python2.7/site-packages/django/utils/functional.py", line 35, in get res = instance.dict[self.name] = self.func(instance) File "/usr/lib64/python2.7/site-packages/django/urls/resolvers.py", line 313, in url_patterns patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) File "/usr/lib64/python2.7/site-packages/django/utils/functional.py", line 35, in get res = instance.dict[self.name] = self.func(instance) File "/usr/lib64/python2.7/site-packages/django/urls/resolvers.py", line 306, in urlconf_module return import_module(self.urlconf_name) File "/usr/lib64/python2.7/importlib/init.py", line 37, in import_module import(name) File "/usr/lib/python2.7/site-packages/swiftbrowser/urls.py", line 1, in from django.conf.urls import patterns, url ImportError: cannot import name patterns

sudharani-m avatar Dec 22 '16 09:12 sudharani-m

Import errors may be for various reasons. From what I see, import command should work though there is a syntactic errors in other part of program.

Simple import command should work. I would debug this in the python shell to verify why import isn't working. Perhaps if you can upload your project somewhere we can have a look at it.

Sent from my iPhone

On 22-Dec-2016, at 2:44 PM, sudharani-m <[email protected]mailto:[email protected]> wrote:

Hi Manoj, I tired different options. My url.py I have updated to include swift urls. However I getting import error. Pls can you help me here?

from django.conf.urls import url from django.contrib import admin

urlpatterns = [ url(r'^admin/', admin.site.urls, swiftbrowser.urls), ]

import swiftbrowser.urls urlpatterns = [ url(r'^', include(swiftbrowser.urls), ]

python manage.py runserver Performing system checks...

Unhandled exception in thread started by <function wrapper at 0x7f08956d30c8> Traceback (most recent call last): File "/usr/lib64/python2.7/site-packages/django/utils/autoreload.py", line 226, in wrapper fn(*args, **kwargs) File "/usr/lib64/python2.7/site-packages/django/core/management/commands/runserver.py", line 121, in inner_run self.check(display_num_errors=True) File "/usr/lib64/python2.7/site-packages/django/core/management/base.py", line 374, in check include_deployment_checks=include_deployment_checks, File "/usr/lib64/python2.7/site-packages/django/core/management/base.py", line 361, in _run_checks return checks.run_checks(**kwargs) File "/usr/lib64/python2.7/site-packages/django/core/checks/registry.py", line 81, in run_checks new_errors = check(app_configs=app_configs) File "/usr/lib64/python2.7/site-packages/django/core/checks/urls.py", line 14, in check_url_config return check_resolver(resolver) File "/usr/lib64/python2.7/site-packages/django/core/checks/urls.py", line 24, in check_resolver for pattern in resolver.url_patterns: File "/usr/lib64/python2.7/site-packages/django/utils/functional.py", line 35, in get res = instance.dict[self.name] = self.func(instance) File "/usr/lib64/python2.7/site-packages/django/urls/resolvers.py", line 313, in url_patterns patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) File "/usr/lib64/python2.7/site-packages/django/utils/functional.py", line 35, in get res = instance.dict[self.name] = self.func(instance) File "/usr/lib64/python2.7/site-packages/django/urls/resolvers.py", line 306, in urlconf_module return import_module(self.urlconf_name) File "/usr/lib64/python2.7/importlib/init.py", line 37, in import_module import(name) File "/usr/lib/python2.7/site-packages/swiftbrowser/urls.py", line 1, in from django.conf.urls import patterns, url ImportError: cannot import name patterns

You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/cschwede/django-swiftbrowser/issues/29#issuecomment-268753962, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AIQSArNcObouzQiFxIxwPwWOyyYIaV8Jks5rKj9QgaJpZM4LLo8h.

manoj-ms avatar Dec 28 '16 04:12 manoj-ms

Hi Manoj, Can I set up some quick call to discuss on this?

sudharani-m avatar Jan 02 '17 05:01 sudharani-m

We can one next week.

Sent from my iPhone

On 02-Jan-2017, at 10:41 AM, sudharani-m <[email protected]mailto:[email protected]> wrote:

Hi Manoj, Can I set up some quick call to discuss on this?

You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/cschwede/django-swiftbrowser/issues/29#issuecomment-269935018, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AIQSAs8lMdZfOTggDnNTr3OwPZmR5Stxks5rOIcXgaJpZM4LLo8h.

manoj-ms avatar Jan 04 '17 09:01 manoj-ms

The import patterns ImportError might be caused by an incompatibility with django 1.10. You could try pip install django==1.09 to make sure django 1.09 is installed (then try to run swiftbrowser again). For me that worked to get swiftbrowser running without import errors (although I get an issue similar to #15).

hoogenm avatar Jan 23 '17 16:01 hoogenm