DjangoにGoogleCloudStorageの設定を実装したが、CircleCI上で、 No module named 'google'というエラーメッセージ が表示されてしまいます。
以下に発生している問題の詳細等を記載しましたので、アドバイスいただけたらと思います。
前提
・以下の記事を参考に、DjangoにGoogleCloudStorageを設定した。
https://sleepless-se.net/2019/04/30/django-google-cloud-storage-settings/#Cloud_Storage
・フレームワークはDjango、DBはpostgreSQL、VMはDockerを使用。
・CircleCIを使用しており、Gitにプッシュした際に、今回のエラーメッセージが表示された。
・ローカルの仮想環境では、問題なく動作している。
発生している問題・エラーメッセージ
DjangoにGoogleCloudStorageの設定を実装したが、Gitにプッシュした際に、CircleCI上で、以下のエラーメッセージが表示される。
#!/bin/bash -eo pipefail ./manage.py test Traceback (most recent call last): File "/home/circleci/project/./manage.py", line 21, in <module> main() File "/home/circleci/project/./manage.py", line 17, in main execute_from_command_line(sys.argv) File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line utility.execute() File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/__init__.py", line 375, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/commands/test.py", line 23, in run_from_argv super().run_from_argv(argv) File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/base.py", line 315, in run_from_argv parser = self.create_parser(argv[0], argv[1]) File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/base.py", line 289, in create_parser self.add_arguments(parser) File "/home/circleci/.local/lib/python3.9/site-packages/django/core/management/commands/test.py", line 44, in add_arguments test_runner_class = get_runner(settings, self.test_runner) File "/home/circleci/.local/lib/python3.9/site-packages/django/test/utils.py", line 303, in get_runner test_runner_class = test_runner_class or settings.TEST_RUNNER File "/home/circleci/.local/lib/python3.9/site-packages/django/conf/__init__.py", line 79, in __getattr__ self._setup(name) File "/home/circleci/.local/lib/python3.9/site-packages/django/conf/__init__.py", line 66, in _setup self._wrapped = Settings(settings_module) File "/home/circleci/.local/lib/python3.9/site-packages/django/conf/__init__.py", line 157, in __init__ mod = importlib.import_module(self.SETTINGS_MODULE) File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked File "<frozen importlib._bootstrap>", line 680, in _load_unlocked File "<frozen importlib._bootstrap_external>", line 790, in exec_module File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed File "/home/circleci/project/config/settings.py", line 125, in <module> from google.oauth2 import service_account ModuleNotFoundError: No module named 'google' Exited with code exit status 1 CircleCI received exit code 1
上記のエラーメッセージ 後半の、settings.py", line 125 と from google.oauth2 import service_account の部分で問題となっている settings.py は以下のように期日した。
# INSTALLED_APPS に 'storages' を追加 INSTALLED_APPS = [ . . . . 'storages' ] # settings.pyの下の方に追加 # GoogleCloudStorage settings from google.oauth2 import service_account ⇦⇦ここがエラーメッセージで言及されている箇所 GS_CREDENTIALS = service_account.Credentials.from_service_account_file( '/json/file/path' ) DEFAULT_FILE_STORAGE = 'storages.backends.gcloud.GoogleCloudStorage' STATICFILES_STORAGE = 'storages.backends.gcloud.GoogleCloudStorage' GS_BUCKET_NAME = 'bucket-name' GS_PROJECT_ID = 'project-name' STATIC_URL = 'https://storage.googleapis.com/your-bucket-name/'
試したこと①
Dockerfileに
RUN pip3 install google-auth-oauthlib
と、モジュールをインストールする記述を追加したが、エラーメッセージは変わらなかった。
試したこと②
settings.pyのINSTALLED_APPSの一番下に以下の記述をした。
INSTALLED_APPS = [ . . . . 'storages' 'google.oauth2',#add: ]
しかし、エラーメッセージは変わらなかった。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。