Install Jupyter lab without anaconda

Install julia and IJulia

Install julia:

Install IJulia (which is essential for jupyter notebook)

Install Conda and configuring Julia to work with JupyterLab

Also see this.

using Pkg
Pkg.add("Conda");
Pkg.build("Conda"); # required otherwise error will occur while using Conda
using Conda
Conda.add("jupyterlab"); # automatically download and install miniconda

Every time you want to initiate jupyter notebook, run julia REPL and

using IJulia; 
notebook() # open jupyter notebook

Similar to whom use Anaconda, add the following to PATH if you want to use the installed jupyter or jupyter lab in CMD.

Change Jupyter start-up folder

Please refer to this.