Upon \"import graphlab\" the following occurs:
ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found.
1. Ensure user account has wr
I was getting the dependencies error in both IPython and on the python command line. I didn't have any luck installing through the GraphLab Create launcher. I had to run the following command to fix the installation (my environment name is "gl-env". Change this name to your environment):
activate gl-env
python -m ipykernel install --user --name gl-env --display-name "Python (gl-env)
Then I opened a python command line and ran:
import graphlab
graphlab.get_dependencies()
Note when running this last import command, I get the error in the OP, however after running the .get_dependencies() method it finds the module and installs the necessary dependencies. Subsequent calls to "import graphlab" succeed after this.