### 前提・実現したいこと
現在サーバー側をDjango,フロント側をangularでシステムを作っています。
Djangoで二か所エラーが発生しました。
importしたいのですが見つからず困っています。
ファイルはアプリ内の_init_.pyファイルです。
バージョンはpython3.9.5です。
windows10です。
発生している問題・エラーメッセージ
エラーメッセージ Import "_frozen_importlib" could not be resolved Import "_frozen_importlib_external" could not be resolved 追加質問(エラー) 写真一枚目の1行目のエラーです。 from ..sublist.views import ListViewSet ImportError: attempted relative import beyond top-level package ### 該当のソースコード django ソースコード ###### Bootstrap help ##################################################### ###### Until bootstrapping is complete, DO NOT import any modules that attempt to import importlib._bootstrap (directly or indirectly). Since this partially initialised package would be present in sys.modules, those modules would get an uninitialised copy of the source version, instead of a fully initialised version (either the frozen one or the one initialised below if the frozen one is not available). import _imp # Just the builtin component, NOT the full Python module import sys try: import _frozen_importlib as _bootstrap except ImportError: from . import _bootstrap _bootstrap._setup(sys, _imp) else: ###### importlib._bootstrap is the built-in import, ensure we don't create a second copy of the module. _bootstrap.__name__ = 'importlib._bootstrap' _bootstrap.__package__ = 'importlib' try: _bootstrap.__file__ = __file__.replace('__init__.py', '_bootstrap.py') except NameError: ###### __file__ is not guaranteed to be defined, e.g. if this code gets frozen by a tool like cx_Freeze. pass sys.modules['importlib._bootstrap'] = _bootstrap try: import _frozen_importlib_external as _bootstrap_external except ImportError: from . import _bootstrap_external _bootstrap_external._setup(_bootstrap) _bootstrap._bootstrap_external = _bootstrap_external else: _bootstrap_external.__name__ = 'importlib._bootstrap_external' _bootstrap_external.__package__ = 'importlib' try: _bootstrap_external.__file__ = __file__.replace('__init__.py', '_bootstrap_external.py') except NameError: ###### __file__ is not guaranteed to be defined, e.g. if this code gets frozen by a tool like cx_Freeze. pass sys.modules['importlib._bootstrap_external'] = _bootstrap_external ###### To simplify imports in test code _pack_uint32 = _bootstrap_external._pack_uint32 _unpack_uint32 = _bootstrap_external._unpack_uint32 ###### Fully bootstrapped at this point, import whatever you like, circular dependencies and startup overhead minimisation permitting :) ### 試したこと 検索して調べたのですが解決策が出てこず困っています。 ![![イメージ説明](91740b1599b035f679775f3c83f9ae46.png)](5671d3c317d0c11d651c076899597a73.png)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/29 10:51
2021/05/29 11:45
2021/05/30 10:17