It would be great if you asked the user before doing this. My environments are usually managed by one of poetry or pipenv or nix, not pip. Which means now my lock files and installed stuff is out of sync.
Show HN: A modern Jupyter client for macOS
161–170 of 192 posts
Re: Show HN: A modern Jupyter client for macOS
#162My biggest issue with Jupyter is the key bindings, I want to be able to import my Jetbrains keybindings to Jupyter notebooks but havent found a good way. The Jupyter implementation in Pycharm is just terrible so still stuck using jupyter in the browser. Will your tool allow custom key bindings?
Isn't this better if you use DataSpell from Jetbrains instead of Pycharm?
I just do a lot of my R editing in PyCharm now and flip between terminals and RStudio. I was hoping DataSpell could unify that, but it's not ready.
The new RStudio IDE is promising, however.
Re: Show HN: A modern Jupyter client for macOS
#163So, it looks like if you try and add a kernel for a virtualenv that doesn't have ipykernel installed you immediately install it in the virtualenv with `pip` It would be great if you asked the user before doing this. My environments are usually managed by one of poetry or pipenv or nix, not pip. Which means now my lock files and installed stuff is out of sync.
Re: Show HN: A modern Jupyter client for macOS
#164Feature request: If I drag a tabular file (e.g. CSV, parquet, etc.) into the UI, do something like:
temp1 = pd.read_csv('path_to_file')
temp1.head()
Good luck with it!Re: Show HN: A modern Jupyter client for macOS
#165Re: Show HN: A modern Jupyter client for macOS
#166I also hope you’re able to add something about the business model soon.
Re: Show HN: A modern Jupyter client for macOS
#167Re: Show HN: A modern Jupyter client for macOS
#168So, it looks like if you try and add a kernel for a virtualenv that doesn't have ipykernel installed you immediately install it in the virtualenv with `pip` It would be great if you asked the user before doing this. My environments are usually managed by one of poetry or pipenv or nix, not pip. Which means now my lock files and installed stuff is out of sync.
Great feedback, thank you. I've heard this before. I'm thinking of keeping the default but adding an option in settings to "ask before installation" for users who prefer that behaviour (similar to VS Code).
Re: Show HN: A modern Jupyter client for macOS
#169Thank you for attempting to use swift first. Electron apps are bloated and overused. Excited to play around with this!
> Full disclosure: it's built with Electron. I originally wrote it in Swift but couldn't get the editor experience to where I wanted it. Now it supports autocomplete, multi-cursor editing, and moving the cursor between cells just like you'd expect from JupyterLab or VS Code.
Consider taking this as evidence that Electron isn't bad, instead of evidence that you shouldn't use this program.
Re: Show HN: A modern Jupyter client for macOS
#170A bit off topic, sorry, but: Jupyter is bad for research. The ability to run code out of order, but then save the output, is confusing for the one doing the research and everybody who wants to reproduce it. I don't understand why the decision was made for Jupyter to combine the source code of a notebook and the output. Things like Quarto keep both separate, as essentially all programming languages inteded, while prov…