Я учусь разрабатывать в Django, и я использую PyCharm в своем проекте, и я хотел бы использовать в нем консоль i Python.
i Python запускается, это проблема не в этом.
Проблема в том, что когда я запускаю i Python из консоли, все мои модели и другие классы утилит импортируются.
Это то, что происходит, когда я запускаю Команда python3 manage.py shell_plus
:
# Shell Plus Model Imports
from app.models.models import Model1, Model2, Model3
from django.contrib.admin.models import LogEntry
from django.contrib.auth.models import Group, Permission, User
from django.contrib.contenttypes.models import ContentType
from django.contrib.sessions.models import Session
# Shell Plus Django Imports
from django.core.cache import cache
from django.conf import settings
from django.contrib.auth import get_user_model
from django.db import transaction
from django.db.models import Avg, Case, Count, F, Max, Min, Prefetch, Q, Sum, When, Exists, OuterRef, Subquery
from django.utils import timezone
from django.urls import reverse
/myproject/env/lib/python3.7/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be saved
warn("IPython History requires SQLite, your history will not be saved")
Python 3.7.4 (default, Jul 23 2019, 18:02:54)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.13.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]:
Между тем, когда я запускаю консоль Python в PyCharm, импорт не производится, и мне приходится вручную импортировать все мои модели. Вот что происходит в консоли PyCharm Python:
/home/user/myproject/env/bin/python /snap/pycharm-community/188/plugins/python-ce/helpers/pydev/pydevconsole.py --mode=client --port=33543
/home/user/myproject/env/lib/python3.7/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be saved
warn("IPython History requires SQLite, your history will not be saved")
import sys, django
print('Python %s on %s' % (sys.version, sys.platform))
Python 3.7.4 (default, Jul 23 2019, 18:02:54)
Type 'copyright', 'credits' or 'license' for more information
In[2]:
Очевидно, что команда выполняется в команде shell_plus, которой нет в консоли PyCharm.
И вот версии б / у.
Ubuntu = 18.04 LTS
python = 3.7.4
iPython = 7.13.0
Django = 3.0.5
PyCharm = 2019.3.4 Community
Спасибо за помощь, вы мне можете помочь.