강의

멘토링

커뮤니티

Inflearn Community Q&A

fo's profile image
fo

asked

Python Security Automation Task Development and OpenAI API Business Application

Python GoogleTranslator library and f-string output

ModuleNotFoundError: No module named 'googletrans'

Written on

·

42

0

안녕하세요,

4버전으로 업그레이드를 해도

ModuleNotFoundError: No module named 'googletrans' 에러가 나서 문의드립니다.

image.png

 

pythongoogletrans

Answer 1

1

boanproject님의 프로필 이미지
boanproject
Instructor

아래와 같은 코드로 수정이 되었습니다. 영상은 후에 교체될 예정입니다. 감사합니다.

pip install deep_translator

from deep_translator import GoogleTranslator

input_text = input("한글을 입력하세요. ")

translated = GoogleTranslator(source='ko', target='en').translate(input_text)

print(f"입력한 한글 : {input_text}")

print(f"번역된 영어: {translated}")
fo's profile image
fo

asked

Ask a question