We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 723f42b commit 33d19c6Copy full SHA for 33d19c6
src/ReactionMechanismSimulator.jl
@@ -2,6 +2,11 @@ module ReactionMechanismSimulator
2
using PythonCall
3
using CondaPkg
4
packages = keys(CondaPkg.current_packages())
5
+if !("rmg" in packages)
6
+ ENV["JULIA_CONDAPKG_ENV"] = abspath("rms_env")
7
+ const Pkg = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
8
+ Pkg.build("PythonCall")
9
+end
10
const Chem = PythonCall.pynew()
11
const Desc = PythonCall.pynew()
12
const molecule = PythonCall.pynew()
0 commit comments