Memo after studying Python
If I was writing python in vscode, the external library would not be complemented and development would be inefficient. ** I want to be able to complement external libraries as well. ** **
It is OK if you describe the path where the library is stored in setting.json
pip3 install library name
If installed,
Requirement already satisfied:Library name in/usr/local/lib/python3.8/site-packages (0.6.3)
Should be displayed as
Check the files stored in this path for the time being
ls /usr/local/lib/python3.8/site-packages
If the library list is displayed, there seems to be no problem
coomand + shit + p
Enter "setting json" in the command palette ↓ Open Open Setting (JSON)
"python.autoComplete.extraPaths": ["/usr/local/lib/python3.8/site-packages "]
If you save it with this, you can complete the external library and jump to doc.