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
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
.