I have a conda virtual environment with Python 3.7.16
and several installed libraries such as 'lifelines'
, etc. In the conda console all the installed libraries are shown; however, when I open a Jupyter Notebook
on the same environment and try to load, for example, the library 'lifelines'
, it gives me the error message ModuleNotFoundError: No module named 'lifelines'
.
I have searched on Github and Stack Overflow, and tried several solutions such as this one and others, but I still can't import libraries on Jupyter Notebooks that are already installed in the conda environment.
Does anybody know how to solve this issue?