来自 google-cloud-sdk 的 Pylance 问题
Pylance issues from google-cloud-sdk
Pylance 在我重新安装 Windows 后显示 Google Cloud SDK 错误。
from google.appengine.ext import ndb
class Example(ndb.Model):
basic_example = ndb.StringProperty()
第一期,up by import:
Import "google.appengine.ext" could not be resolved Pylance (reportMissingImports)
我需要为 Cloud SDK 添加 extraPaths。我已经 seen/tried 各种解决方案并发现这个有效:
{ // settings.json
"python.analysis.extraPaths": [
"C:/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/platform/google_appengine"
],
"python.autoComplete.extraPaths": [
"C:/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/platform/google_appengine"
]
}
当前问题,使用库的地方;遍及代码。
"Model" is not a known member of module Pylance (reportGeneralTypeIssues)
"StringProperty" is not a known member of module Pylance (reportGeneralTypeIssues)
我看不到前进的方向。
项目 运行 Python 2.7 而 Pylance 需要 3.0。
Pylance 在我重新安装 Windows 后显示 Google Cloud SDK 错误。
from google.appengine.ext import ndb
class Example(ndb.Model):
basic_example = ndb.StringProperty()
第一期,up by import:
Import "google.appengine.ext" could not be resolved Pylance (reportMissingImports)
我需要为 Cloud SDK 添加 extraPaths。我已经 seen/tried 各种解决方案并发现这个有效:
{ // settings.json
"python.analysis.extraPaths": [
"C:/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/platform/google_appengine"
],
"python.autoComplete.extraPaths": [
"C:/Program Files (x86)/Google/Cloud SDK/google-cloud-sdk/platform/google_appengine"
]
}
当前问题,使用库的地方;遍及代码。
"Model" is not a known member of module Pylance (reportGeneralTypeIssues)
"StringProperty" is not a known member of module Pylance (reportGeneralTypeIssues)
我看不到前进的方向。
项目 运行 Python 2.7 而 Pylance 需要 3.0。