I have some imports in my jupyter notebook and among them is tensorflow:
ImportError Traceback (most recent call last)
Conda environment fetches the tensorflow package from the main system site-packages.
Step 1: Just deactivate conda environment
conda deactivate
pip install tensorflow
Step 2: Switch back to conda environment
conda activate YOUR_ENV_NAME
jupyter notebook
Step 3: Run the cell with import tensorflow you should be able to import.
Thanks