Skip to content

How can I install 3rd party packages #26

Answered by exodrifter
HUSTlwr asked this question in Q&A
Discussion options

You must be logged in to vote

You'll need to add the location of the xlrd module when you set up the Python engine. We do something like this in the PythonLibrary.cs example.

Basically, you'll need to do something like this:

var engine = Python.CreateEngine();

var paths = engine.GetSearchPaths();
paths.Add("path/to/xlrd/module");
engine.SetSearchPaths (paths);

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by exodrifter
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #26 on December 21, 2020 15:25.