Pylance "Invalid Character in token" 用于 !pip 命令

Pylance "Invalid Character in token" for !pip commands

我 运行 Python 3.9.5 在 VSCode 上处于交互模式。我的第一个单元格如下所示:

错误是

Invalid character in token "" Pylance

.
当我按下 运行 Cell.

时,代码仍然运行良好

如何让 Pylance 忽略这些命令或以某种方式消除错误?

扩展:

OS: Windows 10

这将被报告为警告:

!pip install numpy

这将强制 Pylance 忽略该行中的警告

!pip install numpy # type: ignore

如果你只有几行,这没问题,但理想情况下,我希望有一个 comment/annotation 来禁用 linter,然后另一个 comment/annotation 来重新启用它,但是我不知道该怎么做,也许是这样的:

# type: ignore on      <<<<<<<<<< NOTE: THIS DOES NOT WORK, I JUST WISH IT DID
!pip install numpy
!pip install matplotlib
!pip install pandas
# type: ignore off     <<<<<<<<<< NOTE: THIS DOES NOT WORK, I JUST WISH IT DID