Home > Enterprise >  How can I get a VSCode Extension to show the install tutorial?
How can I get a VSCode Extension to show the install tutorial?

Time:10-22

I recently installed the Python VSCode extension, and when I did it popped up with a handy tutorial page.

However, after closing it, I cannot for the life of me figure out how to get this page back.

I've tried reinstalling the extension, checking through all of the commands, modifying settings, nothing seems to work.

Checking through the repo for the python extension, there seems to be a onWalkthrough:pythonWelcome that creates this page. However, I have absolutely no idea how to manually invoke this again.

Does anyone know how to do this? I know it's not strictly necessary, but I just assumed it would be easy and was surprised and stubbourn when it wasn't.

CodePudding user response:

It has been removed, you can refer to these page for more details:

Should we not open the start page if a user already has a folder open?

Python Start Page

Welcome page opens while I am starting to type in a python file

Remove start page and its build dependencies

CodePudding user response:

After asking the devs directly, it seems that it's extremely simple!

Get Started: Open Walkthrough... in the command palette will open a menu of available walkthroughs from extensions you've installed, including the Python one I was trying to find.

  • Related