Reputation: 163
I wonder how to reload Python package after pip install
in Visual Studio Code?
pip install package-A
pip list
package-A
does not existIs the only way to restart?
Upvotes: 16
Views: 18847
Reputation: 308
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.
Upvotes: 17
Reputation: 11
On MacOS, use command + shift + p
and then choose "Developer: Reload Window". It is helpful to bind this to command + r
. For Windows users, replace command
with CTRL
.
Upvotes: 1
Reputation: 31
ctrl+shift+p and choose "Developer: Reload with extentions disabled"
Upvotes: 3
Reputation: 177
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
Upvotes: -1
Reputation: 1647
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
Upvotes: 0
Reputation: 834
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.
Upvotes: 0