Conda list shows a package but cannot import it

前端 未结 7 1736
野趣味
野趣味 2021-01-01 16:22

Here an issue i\'m having on a conda Virtual env. I\'m using ubuntu 64b guest on windows 7 host with Virtual Box.

So when i\'m doing :

source activat         


        
7条回答
  •  失恋的感觉
    2021-01-01 16:56

    Seems to be deps related issue see here github , So maybe You should ensure that Anaconda is up-to-date so that you are working with all the latest package releases. To do this, you should first update the conda utility run : conda update conda , When prompted to do so, type y to proceed with the update. After that update anaconda also run : conda update anaconda Again when prompted to do so, type y to proceed , after updates finished open new terminal and verify : conda --version and : python --version

    • now try reinstalling visdom :conda install -n universe visdom --force-reinstall or just update all packages : conda install -n universe --update-all .

提交回复
热议问题