
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
컴퓨터가 파이 몽고 인식을 못 하는 것 같습니다 ㅠㅠ 다음 강의로 넘어갈 수가 없어요
VS코드에서 나온 밑줄이 파이 몽고에 그어져 있습니다 아래 오류코드 첨부
뜬 메세지 reportMissingImports [boolean or string, optional]: Generate or suppress diagnostics for imports that have no corresponding imported python file or type stub file. The default value for this setting is "error".
작성한 코드 및 에러 메세지
from pymongo import MongoClient
client = MongoClient('mongodb+srv://sparta:<test>@cluster0.ni0hmp0.mongodb.net/?retryWrites=true&w=majority')
db = client.dbsparta
doc = {
'name':'영수' ,
'age' : '24'
}
db.users.insert_one(doc)
