JuliaPy / Conda.jl

Conda managing Julia binary dependencies
Other
174 stars 57 forks source link

how to call command line from Conda.jl #212

Closed AbhimanyuAryan closed 2 years ago

AbhimanyuAryan commented 2 years ago

After installing Playwright with

Conda.pip("install", "playwright")

I am supposed to call

playwright install

to install chromium firefox webkit support. Is their any way to call this from Conda.jl julia env?

conda_jl is env in my minicoda3/envs

stevengj commented 2 years ago

You should be able to do

playwright  = joinpath(Conda.BINDIR, "playwright")
run(`$playwright install`)
AbhimanyuAryan commented 2 years ago

Thankyou @stevengj