Ralph Caraveo
Ralph Caraveo

Reputation: 10225

Does IronPython .net based DLL need to be deployed with Python Standard Library if it uses the Standard Library?

If I reference the Python Standard Library using IronPython do I have to deploy any Python related libraries or runtimes along with my .net dll? Or, can I just deploy the dll?

Upvotes: 1

Views: 187

Answers (1)

Oren Mazor
Oren Mazor

Reputation: 4487

you need to deploy the python libraries you're referencing along with your dll. it wont be included statically in there for you.

Upvotes: 3

Related Questions