android bot need help!



ShikoZZ

Basic
Joined
04.01.20
Messages
32
Reaction score
1
Points
3
Hello everyone, I need help, I can’t get to deploy the admin panel on gmbot, I use the digitalocean host bunch, centos 6.8, python 2.7.8 / 2.7.6 I also tried, postgresql 9.4.3, pip 7, after the command ./manage.py migrate errors fly. Advise what kind of bunch you need to use to at least deploy a bot. Perhaps even some other hosted VPN host, thanks for your attention.
 

ShikoZZ

Basic
Joined
04.01.20
Messages
32
Reaction score
1
Points
3
[root@asassss smsg_r]# ./manage.py migrate
Traceback (most recent call last):
File "./manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 341, in execute
django.setup()
File "/usr/local/lib/python2.7/site-packages/django/__init__.py", line 27, in setup
apps.populate(settings.INSTALLED_APPS)
File "/usr/local/lib/python2.7/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
File "/usr/local/lib/python2.7/site-packages/django/apps/config.py", line 199, in import_models
self.models_module = import_module(models_module_name)
File "/usr/local/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/usr/local/lib/python2.7/site-packages/django/contrib/auth/models.py", line 4, in <module>
from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
File "/usr/local/lib/python2.7/site-packages/django/contrib/auth/base_user.py", line 52, in <module>
class AbstractBaseUser(models.Model):
File "/usr/local/lib/python2.7/site-packages/django/db/models/base.py", line 119, in __new__
new_class.add_to_class('_meta', Options(meta, app_label))
File "/usr/local/lib/python2.7/site-packages/django/db/models/base.py", line 316, in add_to_class
value.contribute_to_class(cls, name)
File "/usr/local/lib/python2.7/site-packages/django/db/models/options.py", line 214, in contribute_to_class
self.db_table = truncate_name(self.db_table, connection.ops.max_name_length())
File "/usr/local/lib/python2.7/site-packages/django/db/__init__.py", line 33, in __getattr__
return getattr(connections[DEFAULT_DB_ALIAS], item)
File "/usr/local/lib/python2.7/site-packages/django/db/utils.py", line 211, in __getitem__
backend = load_backend(db['ENGINE'])
File "/usr/local/lib/python2.7/site-packages/django/db/utils.py", line 115, in load_backend
return import_module('%s.base' % backend_name)
File "/usr/local/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/usr/local/lib/python2.7/site-packages/django/db/backends/postgresql/base.py", line 24, in <module>
raise ImproperlyConfigured("Error loading psycopg2 module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module: No module named psycopg2
 

Big time

Basic
Joined
27.01.20
Messages
18
Reaction score
0
Points
1
I’m not a strong coder, but as I understand it, the problem is that you are missing a module in either python or the django itself. And apparently there is not enough psycopg2 of this
Try running python in the console (just type python) and import this shit
import psycopg2
If it does not help, we will think further)
 

f123

Basic
Joined
30.01.20
Messages
18
Reaction score
1
Points
1
I’m not a strong coder, but as I understand it, the problem is that you are missing a module in either python or the django itself. And apparently there is not enough psycopg2 of this
Try running python in the console (just type python) and import this shit

If it does not help, we will think further)

One hundred percent problem in the import of a module which is not)
 

ShikoZZ

Basic
Joined
04.01.20
Messages
32
Reaction score
1
Points
3
helped, installed psycopg2 module the error was gone, thanks to everyone for the help
 
Top Bottom