When building a wheel, the kernelspec simply specifies 'python' (just like in ipykernel).
When installing directly, the kernelspec includes the full path of sys.executable.
In the conda recipe, I then add --no-binary :all: to the pip command to prevent it from using a wheel, and the conda relocation can do its magic.
When building a wheel, the kernelspec simply specifies
'python'
(just like in ipykernel). When installing directly, the kernelspec includes the full path ofsys.executable
.In the conda recipe, I then add
--no-binary :all:
to the pip command to prevent it from using a wheel, and the conda relocation can do its magic.