using PyCall
pushfirst!(PyVector(pyimport("sys")."path"), "")
我看第二句的执行结果已经把本地python文件加入了路径, 不知如何才能在 julia中 创建python里calsss的实例
using PyCall
pushfirst!(PyVector(pyimport("sys")."path"), "")
我看第二句的执行结果已经把本地python文件加入了路径, 不知如何才能在 julia中 创建python里calsss的实例
目前我找到的方案,就是用
py"“”
“”"
放到julia文件里用