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
I meet the same problem, and tried all the given solutions to solve this problem, they didn't work for me. Finally I just add the package installed directory to sys.path:
import sys sys.path.apend('/Users/eng/anaconda3/envs/paddle/lib/python2.7/site-packages')
it workded.