从 julia 调用 python 模块
Posted
技术标签:
【中文标题】从 julia 调用 python 模块【英文标题】:Calling python modules from julia 【发布时间】:2015-07-01 05:43:21 【问题描述】:我正在尝试使用 PyCall 包中的 @pyimport 宏从 Julia 当前目录中的 myfile.py 文件中调用一组 python 模块。我不太确定如何使用 PyCall 函数来做到这一点。
【问题讨论】:
请添加一些代码来显示您已经尝试过的内容? 【参考方案1】:在https://github.com/stevengj/PyCall.jl的自述文件中有说明可以执行unshift!(PyVector(pyimport("sys")["path"]), "")
将当前目录添加到搜索路径中。
【讨论】:
当我使用这个时,我得到错误 ERROR: UndefVarError: PyVector not defined 你记得在命令前执行using PyCall
吗?以上是关于从 julia 调用 python 模块的主要内容,如果未能解决你的问题,请参考以下文章