Questions tagged [hydrogen]

Hydrogen is an Atom plugin that allows users to run code with an interactive REPL session with their language of choice inside GitHub’s Atom text editor.

Hydrogen lets you run your code directly in Atom using any Jupyter kernels you have installed.

94 questions
3
votes
1 answer

How to turn off frozen modules for hydrogen python extension?

Good day, I installed python 3.11b and when I use hydrogen plugin for Atom it shows me this warning, where and how can I apply these commands below to remove the message? Debugger warning: It seems that frozen modules are being used, which may make…
Igrecolla
  • 85
  • 8
3
votes
0 answers

DecodeError: Wrong wire type in tag. | import tensorflow in Atom+Hydrogen

I am attempting to import tensorflow - my kernel is an anaconda environment. When I run "import tensorflow" using the Anaconda terminal it works perfectly but once I try the same in Atom it throws the following…
Hollyqui
  • 31
  • 2
3
votes
1 answer

Atom and Hydrogen: Output and console

I'm a Python beginner and recently came across the Atom editor and the package Hydrogen, that implements the Jupyter notebook. I did so after realizing that running the notebook in Chrome consumed way too many resources and also seemed to be a bit…
Christopher
  • 2,120
  • 7
  • 31
  • 58
3
votes
1 answer

Use Atom's Hydrogen package with Conda environments in WSL

I was trying to setup WSL for Deep Learning/Machine Learning. I have installed Conda environment via WSL. Now I am wondering is there any way to setup atom's hydrogen package to detect conda environments with ipykernels, which are in WSL? System:…
3
votes
2 answers

ERROR: ipykernel requires Python version 3.4 or above

I am using Ubuntu 16.04 lts. My default python binary is python2.7. When I am trying to install ipykernel for hydrogen in atom editor, with the following command python -m pip install ipykernel It is giving the following errors ERROR: ipykernel…
3
votes
2 answers

Using Hydrogen with Python 3

The default version of python installed on my mac is python 2. I also have python 3 installed but can't install python 2. I'd like to configure Hyrdrogen on Atom to run my script using python 3 instead. Does anybody know how to do this?
ExpertShaun
  • 51
  • 1
  • 4
3
votes
1 answer

Multiple kernels with Atom Hydrogen

I want to use several different, separate IPython kernels simultaneously on different files in Atom with the Hydrogen plugin. By now I can use Hydrogen, it works perfectly, but the same kernel is used for all files (so I cannot run several files at…
Zorglub29
  • 6,979
  • 6
  • 20
  • 37
3
votes
1 answer

Running the atom-editor with the hydrogen package on mac os x with Anaconda3

I hope this is the right place to look for help. If not so forgive me since I am new to this but I want to start learning python for usage with the RaspberryPI. I read that it makes more sense to start with python3 rather than python2. So I…
fr4ggle
  • 31
  • 3
2
votes
0 answers

IPython parent '/' is not a writable location

I am following this guideline to troubleshoot my atom+hydrogen installation: https://nteract.gitbooks.io/hydrogen/content/docs/Troubleshooting.html Specifically, trying to run this part: python3 -m pip install ipykernel python3 -m ipykernel install…
1__
  • 1,511
  • 2
  • 9
  • 21
2
votes
0 answers

Unexpected NameError ONLY when using Atom editor

I wrote some code for a Python homework assignment and it's running fine in Mu-editor and other IDE's, but not in the Atom editor (using the Hydrogen package to run it), where it gives me an unexpected NameError. I've already posted this issue in…
DOdrums
  • 29
  • 1
  • 2
2
votes
0 answers

Atom: Setting up Hydrogen Launcher for use with Python 3.7

I am trying to set up Atom to be able to run Python code interactively and on a line-by-line basis, and have been trying to work with Hydrogen and its associated packages to that end. The Hydrogen package is working properly as intended, as I'm able…
2
votes
1 answer

Setting up Hydrogen and Atom with Anaconda managing python installation

I have added my python 3 executable to the system PATH (against the advice of Anaconda) to try and get Hydrogen (and really any Atom extension/plugin) to run lines or blocks of code in Atom. The 'scripts' atom plugin appears to work (I select some…
Kjell
  • 86
  • 4
2
votes
1 answer

atom: hydrogen installed, but the code is not running (on macOS)

I have the following setting: Python 3.7.2 macOS 10.14 Atome 1.35.1 Script 3.18.1 Hydrogen 2.8.0 running code works in Terminal as well as in atom with script but nothing happen when running the code with hydrogen: In the Language Mappings of…
ecjb
  • 5,169
  • 12
  • 43
  • 79
2
votes
1 answer

Matplotlib figure only shows after second file run

I am doing some basic plotting routine (as below), and after the first file run I will only get
appearing in the output area. And then on the second run of the code, the figure will actually be plotted. Ideally it…
William Baker Morrison
  • 1,642
  • 4
  • 21
  • 33
2
votes
1 answer

Connect Atom Hydrogen to Kernel in Pipenv Shell

Here's a quick rundown of what I'm doing: Make a folder foo on desktop Open Atom Add foo as project folder Open foo in terminal (via Atom platformio-ide-terminal) cd ~/Desktop/foo Setup environment with pipenv install numpy Start environment pipenv…
DannyDannyDanny
  • 838
  • 9
  • 26