I had a hard time installing jupyter lab in a Windows 10 environment, so I'll keep a record of it. If you search Google or Youtube for the jupyter lab installation procedure, you will often find the Anaconda installation procedure. I followed suit and installed Anaconda 3. I successfully installed Anaconda 3 and started jupyter lab, but there were some problems.
--I didn't like the procedure to launch and start jupyter lab from the Anaconda Navigator screen. --Cannot install jupyter lab extension (jupyter lab breaks?)
No matter how many times I tried it, it didn't work, so I gave up on this method. I want to use jupyer lab in the first place, and I don't need Anaconda 3, so I re-examined the procedure to install only jupyter lab.
It was very easy to complete. I just hit the following command.
Tarminal
pip install jupyterlab
jupyter lab
I wanted to use the extension "Variable Inspector" that displays a list of variables in jupyter lab, but I stopped. The reason is that VSCode solved it.
If I was curious to open * .ipynb files with VSCode, Microsoft provided me with an extension called "jupyter". If you install this extension and open the * .ipynb file, you will see an interface similar to jupyter lab and it will work! ?? Moreover, when "Show variables in jupyter kernel" on the toolbar was enabled, the variable list was displayed as a table. Very convenient! !!
This time, I was able to see how to use jupyter lab in the local environment of Windows10. Learning Python seems to be going well. Thank you, Microsoft.
Recommended Posts