I'm working with a Hostgator Shared package to install and run my Django projects, I followed all the steps from here http://support.hostgator.com/articles/django-with-fastcgi#shared-reseller (section: Setup Django Using Virtualenv)
I get stuck in step 3 (Install Django):
- ~/mydjango/bin/pip install django
I get this output:
Exception:
Traceback (most recent call last):
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/basecommand.py", line 215, in main
status = self.run(options, args)
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/commands/install.py", line 272, in run
with self._build_session(options) as session:
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/basecommand.py", line 72, in _build_session
insecure_hosts=options.trusted_hosts,
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/download.py", line 329, in __init__
self.headers["User-Agent"] = user_agent()
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/download.py", line 93, in user_agent
from pip._vendor import distro
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 1050, in <module>
_distro = LinuxDistribution()
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 594, in __init__
if include_lsb else {}
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 933, in _get_lsb_release_info
raise subprocess.CalledProcessError(code, cmd, stdout)
CalledProcessError: Command 'lsb_release -a' returned non-zero exit status 3
Traceback (most recent call last):
File "/home2/belldentjc/mydjango/bin/pip", line 11, in <module>
sys.exit(main())
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/__init__.py", line 233, in main
return command.main(cmd_args)
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/basecommand.py", line 251, in main
timeout=min(5, options.timeout)) as session:
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/basecommand.py", line 72, in _build_session
insecure_hosts=options.trusted_hosts,
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/download.py", line 329, in __init__
self.headers["User-Agent"] = user_agent()
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/download.py", line 93, in user_agent
from pip._vendor import distro
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 1050, in <module>
_distro = LinuxDistribution()
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 594, in __init__
if include_lsb else {}
File "/home2/belldentjc/mydjango/lib/python2.7/site-
packages/pip/_vendor/distro.py", line 933, in _get_lsb_release_info
raise subprocess.CalledProcessError(code, cmd, stdout)
subprocess.CalledProcessError: Command 'lsb_release -a' returned non-zero
exit status 3
Does someone have an idea of what is happening?