无法删除VSC中的IntelliSense扩展

时间:2018-11-03 16:22:06

标签: python python-3.x visual-studio-code vscode-settings

我安装了IntelliSense for Python。我卸载了它,但似乎已安装了钢铁。这是我的文件结构:

websockets/
├── trades_btc_eur.py
└── functions
    ├── GracefulKiller.py
    ├── __init__.py
    ├── Logging.py
    └── Websockets.py

我从functions包中的trades_btc_eur.py中导入了一些功能:

from functions.Logging import create_logger
from functions.GracefulKiller import GracefulKiller
from functions.Websockets import ImprovedWebsocketClient

我可以在PROBLEMS中看到此错误:

Unable to resolve 'functions.Logging'. IntelliSense may be missing for this module.
Unable to resolve 'functions.GracefulKiller'. IntelliSense may be missing for this module.
Unable to resolve 'functions.Websockets'. IntelliSense may be missing for this module.

所有三行都带有下划线。我尝试重新启动VSC和PC,将__init__.py添加到websockets目录,升级到最新版本的VSC。没有任何帮助。我在已安装的扩展程序中看不到它。程序运行良好,有人可以向我解释,如何摆脱IntelliSense

1 个答案:

答案 0 :(得分:1)

IntelliSense是VS Code的Python扩展的一部分,因此您必须安装该扩展才能安装IntelliSense。

但是,如果将"python.analysis.disabled": ["unresolved-import"]添加到设置中,则会关闭警告。