0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

VSCodeの設定

Posted at

多分、何度か設定しているが忘れるので自分用備忘録

インテリセンスの設定

  1. 設定を開く
    2022-12-29_09h59_14.png

  2. python.autoComplete.extraPathsで検索しsetting.jsonを開く

  3. python.autoComplete.extraPathsにsite-packagesのパスを入力

絶対パスでも相対パスでもどちらでもOK

2022-12-29_10h01_08.png

{
    "python.autoComplete.extraPaths": [
        "../../Anaconda3/Lib/site-packages",
        "../../Python/Python38/site-packages",
        "../../Python/Python39/site-packages"
    ]
}

これでVSCodeを再起動するとインテリセンスが聞くようになっています。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?