specified google ads api version "v11" does not exist
이라는 에러가 발생하였다, 버전 11이 없다는 건데 원인은 간단하다.
1) python버전을 확인한다.
ex) python3.6의 google-ads의 최신버전은 12.0.0 이지만
python3.9의 google-ads 최신버전은 19.0.0 이다.
api "V11"의 경우 >=17.0.0 이후에 나온다.
2) google-ads를 재설치 한다.
pip uninstall google-ads
pip install google-ads==18.1.0 <-- api V11을 지원한다.
%% 이때 실행되는 pip의 python version을 정확히 확인하도록 한다.
tip) pyhton3.9 -m pip install google-ads==18.1.0 으로 해도 된다.
3) Profit!!
728x90
반응형
'프로그래밍 > Python' 카테고리의 다른 글
zipfile.ZipFile로 압축해제시 폴더안에 있는 파일은 어떻게 가져오는지 (0) | 2023.03.14 |
---|---|
[요즘 핫한]ChatGPT를 python에서 사용하는 방법 (0) | 2023.02.15 |
[Python] pandas NaN값 처리하기 (0) | 2023.01.16 |
[Python] pandas Dataframe TypeError: Cannot perform 'rand_' with a dtyped [object] array and scalar of type [bool] (0) | 2023.01.16 |
[Pandas(Dataframe)]Delete Header(columns) for Hive2 insert (0) | 2022.12.12 |