pyjulia
pyjulia copied to clipboard
Import Error - Module cannot be found
Hi,
I am attempting to use PyCharm as my IDE debugger. In my code I call on PyJulia to import a package that our group created. However, after we attempt to run this code
import julia
import diffeqpy
julia.install()
diffeqpy.install()
from julia.api import Julia
jl = Julia(compiled_modules=False)
from julia import Pkg
Pkg.add("ReactionMechanismSimulator")
from julia import ReactionMechanismSimulator
We receive an error during the last line, the import line, saying that there was an Import Error and that ReactionMechanismSimulator could not be found. Any advice on how to deal with this issue?