How to add conda env into jupyter notebook installed by pip
How to add conda env into jupyter notebook installed by pip ref: https://medium.com/@nrk25693/how-to-add-your-conda-environment-to-your-jupyter-notebook-in-just-4-steps-abeab8b8d084 If your linux server has no Anaconda installed but conda installed. You don’t want to install Anaconda for just installing jupyter notebook. You just installed jupyter notebook with pip3 with this link 1. check the env on which jupyter notebook is runing: which pip3 where pip3 #for windows cmd 2. add your Conda environment to your jupyter notebook: Step 1: Create a Conda environment. conda create --name firstEnv
…