LoginSignup
1
3

More than 3 years have passed since last update.

python3.8.0の仮想環境作って適用したらvscodeでコード補完が効かなくなった

Last updated at Posted at 2020-03-07

python3.8.0の仮想環境

pyenvで3.8.0の仮想環境作ってヨッシャ新機能試すぞーと思ったらコード補完が全く効かなくなってしまった。
↓ちゃんとpython3.8.0の仮想環境が適用されてる
image.png

対処法

settings.jsonを開く

image.png

settings.jsonに追記

"python.jediEnabled": falseを追記

{
    "python.pythonPath": "/Users/.../.pyenv/versions/new_doc_38/bin/python",
    "python.jediEnabled": false // この1行を追記
}

コード補完できるようになった( ´Д`)=3ッホ
image.png

1
3
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
1
3