본문 바로가기
개발언어/Python

Unable to resolve "requests". IntelliSense may be missing for this module. #2870

by 공장장코난 2019. 1. 12.

python에서 네이버 API를 이용하여 블로그 검색 예제를 작성하는 중 VisualStudio에서 아래 오류를 표시한다.

Unable to resolve "requests". IntelliSense may be missing for this module. #2870

구글신에게 질문한 결과 해결책은 requests가 누락되었으며, console에서 설치해주면 해결 된단다.

설치는 python 패키지 매니저인 pip를 이용하여 설치가 가능하다.

pip install requests

requests 설치 후 pip를 18.1로 upgrade 하란다. 그리고 pip 업그레이드 진행

*reboot 후 다시 project 확인결과 requests가 정상 import 됨이 확인 되었다.

다시 개발 시작..



참조

https://stackoverflow.com/questions/38040916/unable-to-resolve-requests-intellisense-may-be-missing-for-this-module

'개발언어 > Python' 카테고리의 다른 글

Python 개발환경 구축  (0) 2019.01.11