Skip to content

Instantly share code, notes, and snippets.

@popunbom
Created April 16, 2019 07:42
Show Gist options
  • Select an option

  • Save popunbom/0e870a1dbe027d884af449fb4cf02ae4 to your computer and use it in GitHub Desktop.

Select an option

Save popunbom/0e870a1dbe027d884af449fb4cf02ae4 to your computer and use it in GitHub Desktop.
[VSCode] settings.json : Python 補完を強化する
{
"python.pythonPath": "Python 実行ファイルへのパス (例: /Users/popunbom/.pyenv/shims/python3)",
"python.autoComplete.addBrackets": true,
"python.autoComplete.extraPaths": [
"使用したい Python バージョンの site-package ディレクトリへのパス (例: /Users/popunbom/.pyenv/versions/3.6.5/Python.framework/Versions/3.6/lib/python3.6/site-packages)"
],
"python.linting.pylintArgs": [
"--ignored-modules=numpy,cv2,matplotlib",
"--ignored-classes=numpy,cv2,matplotlib",
"--extension-pkg-whitelist=numpy,cv2,matplotlib"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment