Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Install Jupyter in Conda Environment
How to Install Jupyter in a Conda Environment?
✍: FYIcenter.com
The easiest way to run a local instance of Jupyter is
to install it in a Conda Environment.
1. Make sure that Conda is installed on the local computer.
fyicenter$ conda --version conda 4.10.3
2. Install Jupyter Notebook with "conda install" command in the default Conda environment.
fyicenter$ conda install notebook ... jupyter_client-6.1.1 | 88 KB ipykernel-5.3.4 | 183 KB ipython_genutils-0.2 | 27 KB nbconvert-6.1.0 | 481 KB ipython-7.26.0 | 994 KB jupyterlab_pygments- | 8 KB jupyter_core-4.7.1 | 68 KB python-dateutil-2.8. | 233 KB
3. Verify Jupyter installation location. The following output indicates that Jupyter is installed in the system default Conda environment.
fyicenter$ which jupyter /usr/local/anaconda3/bin/jupyter
4. Verify Jupyter version.
fyicenter$ jupyter --version jupyter core : 4.7.1 jupyter-notebook : 6.3.0 qtconsole : 5.0.3 ipython : 7.22.0 ipykernel : 5.3.4 jupyter client : 6.1.12 jupyter lab : 3.0.14 nbconvert : 6.0.7 ipywidgets : 7.6.3 nbformat : 5.1.3 traitlets : 5.0.5
Note that the "jupyter" package contains multiple related packages. They all installed in the system default Conda environment.
fyicenter$ which jupyter /usr/local/anaconda3/bin/jupyter fyicenter$ which ipython /usr/local/anaconda3/bin/ipython fyicenter$ ipython --version 7.22.0
If you want to install Jupyter in a specific Conda environment, you need to activate that environment, then run the installation command.
fyicenter$ conda activate faq (faq) fyicenter$ conda install notebook ... (faq) fyicenter$ which jupyter ~/anaconda3/envs/faq/bin/jupyter
⇒ Start Jupyter in Conda Environment
⇐ Installing and Running Jupyter
2022-02-04, 2124🔥, 0💬
Popular Posts:
Should I edit my PowerPoint document online or offline? If you have Microsoft Office and OneDrive fo...
What are "AutoCorrect Actions" in Microsoft Word? Should I disable it? "AutoCorrect Actions" are add...
What is Microsoft Teams? Microsoft Teams is a Microsoft cloud service that combines workplace chat, ...
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...
What is outlook.office365.com? Our IT tells us to migrate to outlook.office365.com. outlook.office36...