ImportError: cannot import name host

Asked by santosh

when i run mediaproxy , i am getting import error :-

root@santo-VirtualBox:/usr/lib/python2.7/dist-packages/application# /usr/bin/media-dispatcher --no-fork
Traceback (most recent call last):
  File "/usr/bin/media-dispatcher", line 47, in <module>
    from mediaproxy.dispatcher import Dispatcher
  File "/usr/lib/python2.7/dist-packages/mediaproxy/dispatcher.py", line 27, in <module>
    from mediaproxy.configuration import DispatcherConfig
  File "/usr/lib/python2.7/dist-packages/mediaproxy/configuration/__init__.py", line 4, in <module>
    from application.system import host
ImportError: cannot import name host

i tried to explore on application.system , it contains a class whose instance is host which is imported in File "/usr/lib/python2.7/dist-packages/mediaproxy/configuration/__init__.py.

why is it showing this error??
can someone help me ?? I am stuck here
thanks in advance

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu pam Edit question
Assignee:
No assignee Edit question
Solved by:
santosh
Solved:
Last query:
Last reply:
Revision history for this message
Manfred Hampl (m-hampl) said :
#1

Is this an Ubuntu package, or from a foreign source? In the latter case please ask there.

Revision history for this message
santosh (santo407) said :
#2

i am trying to install mediaproxy where this error has arisen ...it's a import error which should haven't occurred because the required package,class and its object is there . so there should have been no issues but i am getting one.
i have explored here and there , but of no success.

here is /dist-packages/application/system.py :-

__all__ = 'host', 'makedirs', 'openfile', 'unlink', 'FileExistsError'

# System properties and attributes

class HostProperties(object):
    """Host specific properties"""

    __metaclass__ = Singleton

    @staticmethod
    def outgoing_ip_for(destination):
        try:
            s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
            s.connect((destination, 1))
            return s.getsockname()[0]
        except socket.error:
            return None

    @property
    def default_ip(self):
        """
        The default IP address of this system. This is the IP address of the
        network interface that has the default route assigned to it or in other
        words the IP address that will be used when making connections to the
        internet.
        """
        return self.outgoing_ip_for('1.2.3.4')

    @property
    def name(self):
        return socket.gethostname()

    @property
    def fqdn(self):
        return socket.getfqdn()

    @property
    def domain(self):
        return socket.getfqdn()[len(socket.gethostname())+1:] or None

    @property
    def aliases(self):
        hostname = socket.gethostname()
        aliases = socket.gethostbyaddr(hostname)[1]
        if hostname in aliases:
            aliases.remove(hostname)
        return aliases

host = HostProperties()

here is :- /dist-packages/mediaproxy/configuration/__init__.py

from application.configuration import ConfigSection, ConfigSetting
from application.configuration.datatypes import IPAddress, NetworkRangeList
from application.system import host
from mediaproxy import configuration_filename
from mediaproxy.configuration.datatypes import AccountingModuleList, DispatcherIPAddress, DispatcherAddressList, DispatcherManagementAddress, PortRange, PositiveIntege$

class DispatcherConfig(ConfigSection):
    __cfgfile__ = configuration_filename
    __section__ = 'Dispatcher'

    socket_path = "dispatcher.sock"
    listen = ConfigSetting(type=DispatcherIPAddress, value=DispatcherIPAddress("any"))
    listen_management = ConfigSetting(type=DispatcherManagementAddress, value=DispatcherManagementAddress("any"))
    relay_timeout = 5 # How much to wait for an answer from a relay
    relay_recover_interval = 60 # How much to wait for an unresponsive relay to recover, before disconnecting it
    cleanup_dead_relays_after = 43200 # 12 hours
    cleanup_expired_sessions_after = 86400 # 24 hours
    management_use_tls = True
    accounting = ConfigSetting(type=AccountingModuleList, value=[])
    passport = ConfigSetting(type=X509NameValidator, value=None)
    management_passport = ConfigSetting(type=X509NameValidator, value=None)

class RelayConfig(ConfigSection):
    __cfgfile__ = configuration_filename
    __section__ = 'Relay'

    relay_ip = ConfigSetting(type=IPAddress, value=host.default_ip)
    advertised_ip = ConfigSetting(type=IPAddress, value=None)
    stream_timeout = 90
    on_hold_timeout = 7200

i am performing it on ubuntu 18.04 and python package is 2.7.
Please help

Revision history for this message
Manfred Hampl (m-hampl) said :
#3

You are not using Ubuntu-provided programs, but software from somewhere else.
Even the file /dist-packages/application/system.py seems to be a foreign version.

The contents of /usr/lib/python2.7/dist-packages/application/system.py on my system (from the package python-application) begin with

# Copyright (C) 2006-2012 Dan Pascu. See LICENSE for details.
#

"""Interaction with the underlying operating system"""

__all__ = ['host', 'makedirs', 'unlink']

This is different from what you pasted above.
I do not know why you hav a different version of system.py - most probably that one is also coming from a foreign source and is not the Ubuntu-provided version.

We cannot help if the programs on your system differ from the Ubuntu-provided version.

Revision history for this message
santosh (santo407) said :
#4

got it solved ....the import was intended from another package containing python2.7 application.
two instances of python2.7 was present which was causing the conflict and hence the import error.

thanks for ur help...cheers!