I installed https://github.com/glemaitre/imbalanced-learn on windows powershell using pip install, conda and github. But when I\'m on
What finally worked for me was putting the venv into the notebook according to Add Virtual Environment to Jupyter Notebook
Here's what I did, using commands from the article:
$ python3 -m pip install --user ipykernel
# add the virtual environment to Jupyter
$ python3 -m ipykernel install --user --name=venv
# create the virtual env in the working directory
$ python3 -m venv ./venv
# activate the venv
$ source venv/bin/activate
# install the package
(venv) pip install imbalanced-learn
# fire up the notebook
(venv) jupyter notebook