Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- FIle
- linux
- python3
- Anaconda
- CUDA
- dataset
- Jupyter notebook
- gpu memory
- ubuntu
- dlib
- shakeratos
- YouTube 8M
- raspberry pi
- install
- urllib
- face_recognition
- Deep Learning
- windows
- error
- object detection
- TensorFlow
- download
- ppc64le
- colaboratory
- colab
- pyTorch
- keras
- python
- 딥러닝
- Windows 10
Archives
- Today
- Total
Shakerato
vscode unresolved import warning 해결 방법 본문
동일 폴더내 라이브러리 파일이 있음에도 찾지못하는 경우 해결 방법
intellisense도 더 잘 작동함
1. vscode 실행
2. Ctrl + Shift + P
3. "Configure Language Specific" 입력, 엔터
4. "Python" 선택 --> settings.json 열림
5. python.jediEnabled:false --> true
or python.jediEnabled --> false,
*내용추가
만약 python.jediEnabled:false를 해도 안되면, 해당 line을 주석처리 후 reload
// "python.jediEnabled": false,
이러면 정상적으로 라이브러리를 load함
reference1: https://www.reddit.com/r/learnpython/comments/a97p09/unresolved_import_warning_vscode/
reference2: https://github.com/Microsoft/vscode-python/issues/3840
Comments