minrk / allthekernels

A multiplexer kernel for Jupyter
MIT License
77 stars 14 forks source link

Specify full executable path in kernelspec #6

Closed SylvainCorlay closed 5 years ago

SylvainCorlay commented 5 years ago

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.

SylvainCorlay commented 5 years ago

Thanks for merging!