I wonder how to reload Python package after pip install in Visual Studio Code?
pip install package-Apip listpackage-Adoes not exist- Restart 'Visual Studio Code'
 
Is the only way to restart?
I wonder how to reload Python package after pip install in Visual Studio Code?
pip install package-Apip listpackage-A does not existIs the only way to restart?
The best answer I've found is to use Developer: Reload Window in the command palette like @rioV8 suggested. You can either use the command palette or you can change the key mappings as described here.
There's already a Ctrl + R key mapping for reloading the window, but it's got a 'when' condition attached to it so I changed that to true. I also had to delete key mappings for other extensions so there was no overlap.
ctrl+shift+p and choose "Developer: Reload with extentions disabled"
You can do that using the Refresh Explorer (The reload button) right next to the directory/workspace that you opened up in the File Explorer.
You might have to hover for a while next to the workspace/directory name on the file explorer once it's expanded to have it in view.
You mean upgrade or re-install ?
pip install --upgrade --force-reinstall <package>
OR
pip install -I <package>
pip install --ignore-installed <package>
Try these commands
Are you sure this is a vscode issue? What happens when you run pip install from a normal command prompt? I suspect you will have the same issue, if that proves true, I would entirely uninstall python and re-install python, then install/upgrade pip to latest.
python -m pip install –upgrade pip