Table of contents
에러
Google AI를 Python에서 활용할 때 아래와 같이 에러가 나는 경우가 있다.
Traceback (most recent call last):
File "~~~.py", line 12, in <module>
import google.generativeai as genai
ModuleNotFoundError: No module named 'google'
해결방법
아래의 모듈들을 설치한다.
pip install google-generativeai
pip install google-ai-generativelanguage
'소프트웨어 > Python' 카테고리의 다른 글
Python File "scrypt\scrypt.py", line 27, in <module>AttributeError: 'NoneType' object has no attribute 'origin' (0) | 2024.04.01 |
---|---|
Python python3.10 dis.py (IndexError: tuple index out of range) (0) | 2024.04.01 |
Python ModuleNotFoundError: No module named 'telegram.error' (0) | 2024.04.01 |
Python pip install telegram 에러 (0) | 2024.04.01 |
Python VSCode에서 버전 변경 (0) | 2024.04.01 |