This repository was archived by the owner on Sep 14, 2018. It is now read-only.

Description
- python 2.7.13 installed and pip install gmusicapi (all dependencies installed)
- IronPython 2.7.7 via nuget in visual studio 2015
I can use gmusicapi classes without problems when running python.exe and all is working properly.
When trying with IronPython from c#:
var pyEngine = Python.CreateEngine();
var paths = pyEngine.GetSearchPaths();
paths.Add(@"c:\python27\lib");
paths.Add(@"c:\python27\lib\site-packages");
pyEngine.SetSearchPaths(paths);
ScriptScope pyScope = pyEngine.CreateScope();
pyEngine.Execute("import sys", pyScope);
pyEngine.Execute("sys.platform = \"win32\"", pyScope);
**// ERROR: No module named google.protobuf.descriptor
pyEngine.Execute("from gmusicapi import Mobileclient", pyScope);**
Any help would be greatly appreciated !