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 shell
- Make a file inside foo called bar.py containing
print("hi")
- Open bar.py in Atom and [shift + enter] to start Hydrogen automatically. Get promted with which kernel to connect to...
The problem: I want to connect the kernel to running in the pipenv shell. How do I achieve this?