Giter Site home page Giter Site logo

Comments (5)

kiyoon avatar kiyoon commented on June 14, 2024

This only applies for creating a new ipynb file with :JupyniumStartSync right?

Currently, it will detect the conda environment you're running with CONDA_PREFIX environment variable and will choose the right kernel for you. Does this workflow not work for you? you'd probably want to activate an environment anyway (for LSPs to work properly) so I thought detecting the current environment makes more sense than parsing the header from Jupytext.

from jupynium.nvim.

vandalt avatar vandalt commented on June 14, 2024

This only applies for creating a new ipynb file with :JupyniumStartSync right?

I think so, yes.

Currently, it will detect the conda environment you're running with CONDA_PREFIX environment variable and will choose the right kernel for you. Does this workflow not work for you? you'd probably want to activate an environment anyway (for LSPs to work properly) so I thought detecting the current environment makes more sense than parsing the header from Jupytext.

I don't use conda, but adding support for VIRTUAL_ENV would indeed fix my issue and make more sense than parsing header from Jupytext. However, for venv there might be some ambiguity on how to match the environment, as there is no conda_env_path in the metadata.

My typical workflow is:

  • Create virtual environment with venv
  • Register the environment with python -m ipykernel install --user --name=<envname>
  • Most of the time, <envname> is what comes directly before venv in the env path (e.g. ~/repos/somerepo/venv would have name somerepo. However, for other users with a similar workflow, the name might be different...

I would see 2 ways of getting the proper environment match for such a case:

  1. os.path.basename(os.path.split(conda_env_path)[-2]) == kernel_specs["testjup"]["spec"]["display_name"] (but someone might register the environment with ipykernel to a completely different name from the parent directory, in which case this fails)
  2. kernel_specs["testjup"]["spec"]["argv"][0] == os.path.join(conda_env_path, "bin", kernel_specs["testjup"]["spec"]["language"])

2 seems like the most robust option to me. Also, I kept conda_env_path in my test code but using a distinct name/mechanism for virtual envs might be best.

I can send a PR implementing something along those lines (or another option if you have a better idea for how to tackle this).

Thanks!

from jupynium.nvim.

kiyoon avatar kiyoon commented on June 14, 2024

I haven't used venv for notebook so I'll need to see how it works. For conda, you just have to install conda install nb_conda_kernels in the base environment and it will register all environments automatically.

In your solutions, I don't understand why there's conda_env_path? I thought the solution is for virtual environment?

from jupynium.nvim.

vandalt avatar vandalt commented on June 14, 2024

Oh sorry I forgot to mention, the code lines above are from tests I did where local conda_env_path = vim.env.VIRTUAL_ENV, instead of CONDA_PREFIX (I kept the variable name the same everywhere in the code to do a quick test).

from jupynium.nvim.

kiyoon avatar kiyoon commented on June 14, 2024

I like the solution 2. Feel free to open a PR, and please add a brief explanation in comments of the detection logic. Also, make sure it will not fail on KeyError and IndexError. If some environment doesn't have such kernelspec just ignore it and move on, defaulting to no action if no matches found. Thank you!

from jupynium.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.