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 2502d85 commit db8dae7Copy full SHA for db8dae7
deps/build.jl
@@ -13,7 +13,8 @@ if PyCall.pyversion.major != 3 || PyCall.pyversion.minor != 7
13
end
14
Conda.add("nomkl")
15
Conda.add("numpy")
16
- if (!Conda.exists("rmg")) && (!Conda.exists("rmgmolecule")) #if rmg and rmgmolecule not present install molecule
+ packages = Conda._installed_packages()
17
+ if !("rmg" in packages) && !("rmgmolecule" in packages) #if rmg and rmgmolecule not present install molecule
18
Conda.add_channel("hwpang")
19
Conda.add("rmgmolecule")
20
0 commit comments