如何使用IronPython在C#中运行外部Python脚本导入numpy模块

时间:2019-06-12 11:19:36

标签: c# python visual-studio numpy ironpython

当在C#,Visual Studio中执行通过IronPython导入numpy模块的外部Python脚本时,出现了numpy模块找不到错误。

试图从本地python文件夹复制numpy目录,这会导致无法加载库的错误。

import time
import imutils
from imutils.video import VideoStream
from os import listdir, path, makedirs
import cv2
import os
import tkinter as tk
from tkinter.font import Font
from tkinter import *

在C#中:-

v.ExecuteFile("D:\\test1.py");

Expected the code to run but throws a module not found error /a library error

0 个答案:

没有答案