install jupyter notebook in conda environment code example
Example 1: install jupyter notebook
conda install -c conda-forge notebook
Example 2: jupyter lab use conda environment
$ conda activate cenv
(cenv)$ conda install ipykernel
(cenv)$ ipython kernel install --user --name=<any_name_for_kernel>
(cenv($ conda deactivate
Example 3: download jupyter
conda install -c conda-forge jupyterlab
Example 4: open jupyter notebook with conda envirionment
conda install -c anaconda ipykernel
Example 5: open jupyter notebook with conda envirionment
python -m ipykernel install --user --name=firstEnv
Example 6: python pip jupyter notebook install
$ python -m pip install <package>