How to reload Python package after pip install in Visual Studio Code?

Question:

I wonder how to reload Python package after pip install in Visual Studio Code?

  1. pip install package-A
  2. pip list
  3. package-A does not exist
  4. Restart ‘Visual Studio Code’

Is the only way to restart?

Asked By: Bourne

||

Answers:

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.

enter image description here

Answered By: DhakkanCoder

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

Answered By: champion-runner

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

Answered By: apinostomberry

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.

Answered By: bbnt

ctrl+shift+p and choose "Developer: Reload with extentions disabled"

Answered By: Pejman Mohebali

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.

Answered By: Paul Mall
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.