最近我注意到,当我将numpy导入为np时,Intellisense不会向我推荐任何东西。例如,如果我键入“np.”,什么也不会发生。之前它会向我推荐函数等等。我试着在Spyder上写代码,一切正常。我认为这是Visual Studio代码的问题。截图
taor4pac1#
1.确保使用正确的python解释器,其中包含numpy pakcage。1.将Pylance设置为Python语言服务器。将以下代码添加到settings.json:"python.languageServer": "Pylance",
Pylance
settings.json
"python.languageServer": "Pylance"
1条答案
按热度按时间taor4pac1#
1.确保使用正确的python解释器,其中包含numpy pakcage。
1.将
Pylance
设置为Python语言服务器。将以下代码添加到settings.json
:"python.languageServer": "Pylance"
,