Problems importing imblearn python package on ipython notebook

前端 未结 6 690
渐次进展
渐次进展 2021-01-12 19:05

I installed https://github.com/glemaitre/imbalanced-learn on windows powershell using pip install, conda and github. But when I\'m on

6条回答
  •  渐次进展
    2021-01-12 19:34

    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
    
    

提交回复
热议问题