Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Running Jupyter Notebook in terminal

So I was able to install and run jupyter with no problems and opening my existing program using "mkdir" -> "cd" -> "conda activate" on my directory which I called "100days". Could someone explain more about whats going on in the back-end? Do I have to repeat that process every time that I open it up? How does jupyter notebook use and define directories?

I followed the steps listed in the Introduction to NumPy track

1 Answer

To launch a Jupyter notebook, open your terminal and navigate to the directory where you would like to save your notebook. Then type the command jupyter notebook and the program will instantiate a local server at localhost:8888 (or another specified port).

Thanks Rob that helps.