Calling python from another julia process

I am trying to call python code from another julia process.

I tried

addprocs(1)
import PyCall
@everywhere using PyCall
@everywhere @pyimport math as pymath
a = pymath.sin(10)
b = remotecall_fetch(pymath.sin,2,10)

but it doesn’t work.

Any insight on how to proceed would be greatly appreciated.
Thanks.