반응형 Language/Python3 FileNotFoundError: No such file or directory: 'ffmpeg' FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'Pydub 사용 시, 발생할 수 있는 문제Pydub: 음성 처리 라이브러리내부적으로 ffmpeg를 사용함Pydub은 음성 파일을 처리할 때, 특히 mp3 파일을 읽거나 저장할 때, ffmpeg가 필요함 해결 방법Macbrew install ffmpegLinuxsudo apt updatesudo apt install ffmpegWindowFFmpeg 공식 웹사이트에서 Windows용 빌드를 다운로드다운로드한 파일의 압축을 해제한 후, bin 폴더 경로를 복사시스템 속성 -> 고급 시스템 설정 -> 환경 변수로 이동한 후, PATH 변수에 방금 복사한 bin 폴더 경로를 추가커맨드 라인에서 ff.. 2024. 10. 9. Mac Selenium Chrome driver 설치pip install selenium # install seleniumbrew install --cask chromedriver # install chrome driverpip install webdriver_manager # 크롬 버전 자동 관리 테스트from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.chrome.service import Servicefrom webdriver_manager.chrome import ChromeDriverManagerimport timedriver = webdriver.Chrome(service= Service(ChromeDriverManage.. 2024. 10. 1. Python Matplotlib 맥북 한글 or '-' 깨지는 현상 해결 import matplotlib.pyplot as pltfrom matplotlib import rcrc('font', family='AppleGothic') # 한글 깨짐 방지plt.rcParams['axes.unicode_minus'] = False # - 깨짐 방지 2024. 9. 30. 이전 1 다음 반응형