jupyter-notebook

Installing Anaconda on Server

微笑、不失礼 提交于 2020-12-30 03:46:19
问题 I have a Unix server where I have Python3 installed. I ssh to the server from my mac. I was wondering if it possible to install Anaconda and Jupyter (will come with Anaconda) on the server so that I can just pull up Jupyter on the server terminal and run codes on jupyter running on the server. Is it possible? And if yes, could someone guide me to the right link? 回答1: in a terminal on your remote server: #download anaconda (change version if you want) wget https://repo.continuum.io/archive

No web browser found: could not locate runnable browser. Jupyter-notebook

梦想与她 提交于 2020-12-29 12:34:51
问题 Jupyter-notebook doesn't open a web browser. It worked just fine before, then after windows 10 prompted for an update it began to open in Microsoft edge. When I tried to change it to the default browser which is chrome now it won't open at all. I followed how to open Jupyter notebook in chrome on windows to try and change it back to chrome. When I try and run jupyter notebook in cmd all I get is [I 21:39:08.015 NotebookApp] JupyterLab extension loaded from C:\Users\roy\Anaconda3\lib\site

No web browser found: could not locate runnable browser. Jupyter-notebook

∥☆過路亽.° 提交于 2020-12-29 12:34:07
问题 Jupyter-notebook doesn't open a web browser. It worked just fine before, then after windows 10 prompted for an update it began to open in Microsoft edge. When I tried to change it to the default browser which is chrome now it won't open at all. I followed how to open Jupyter notebook in chrome on windows to try and change it back to chrome. When I try and run jupyter notebook in cmd all I get is [I 21:39:08.015 NotebookApp] JupyterLab extension loaded from C:\Users\roy\Anaconda3\lib\site

How can I fix “500 : Internal Server Error” on jupyter notebook due to 'tornado.web' not having attribute 'asynchronous'?

若如初见. 提交于 2020-12-29 08:56:28
问题 Jupiter notebook is not opening notebooks and shows a "500 : Internal Server Error" instead. What I did was activate an environment I need and launching Jupyter. Please find below what I did and the error message on the terminal: $ conda activate py3_parcels $ jupyter notebook [I 18:20:39.663 NotebookApp] Loading IPython parallel extension [I 18:20:39.665 NotebookApp] Serving notebooks from local directory: /Users/davidlindo-atichati/run/GOM_MED [I 18:20:39.665 NotebookApp] The Jupyter

ValueError: Could not interpret input 'Rating'

匆匆过客 提交于 2020-12-27 06:59:12
问题 I want to add a graph to my file and it shows the following error and prints an empty graph. I want to plot a graph between the rating column that has values (1,2,3,4,5) and the number of rows in each rating. This is the code: sns.set(rc={'figure.figsize':(6,6)}) plt.title('Distribution of Ratings') sns.countplot(x = 'Rating', Edata = Edata); The error is: --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-77

Interactive Jupyter Widgets not working in Jupyter Lab

给你一囗甜甜゛ 提交于 2020-12-25 09:49:25
问题 I noticed that interactive widgets are not working in my Jupyter Lab notebooks. The following code should produce an interactive slider but doesn't: from ipywidgets import interact, interactive, fixed, interact_manual import ipywidgets as widgets def f(x): return x interact(f, x=10); What is the problem here, and how can I get widgets to work? 回答1: You need to install widget extension pip install ipywidgets jupyter nbextension enable --py widgetsnbextension --sys-prefix 回答2: Per the docs: To

Interactive Jupyter Widgets not working in Jupyter Lab

早过忘川 提交于 2020-12-25 09:49:12
问题 I noticed that interactive widgets are not working in my Jupyter Lab notebooks. The following code should produce an interactive slider but doesn't: from ipywidgets import interact, interactive, fixed, interact_manual import ipywidgets as widgets def f(x): return x interact(f, x=10); What is the problem here, and how can I get widgets to work? 回答1: You need to install widget extension pip install ipywidgets jupyter nbextension enable --py widgetsnbextension --sys-prefix 回答2: Per the docs: To

How to change python version in Anaconda?

眉间皱痕 提交于 2020-12-25 00:00:25
问题 I am trying to get into deep learning. I installed Anaconda to use jupyter and generally not to care about installing all of those packages like matplotlib etc myself. But I cannot install tensorflow as it works only with Python 3.4, 3.5, or 3.6 but I have 3.7. After I read about it I installed python 3.6.8. I uninstalled Anaconda and installed it again, nothing changed. After that, I used this command conda install python=3.6.8 to presumably install python 3.6.8 for it (I found this solution

How to change python version in Anaconda?

ぐ巨炮叔叔 提交于 2020-12-24 23:58:26
问题 I am trying to get into deep learning. I installed Anaconda to use jupyter and generally not to care about installing all of those packages like matplotlib etc myself. But I cannot install tensorflow as it works only with Python 3.4, 3.5, or 3.6 but I have 3.7. After I read about it I installed python 3.6.8. I uninstalled Anaconda and installed it again, nothing changed. After that, I used this command conda install python=3.6.8 to presumably install python 3.6.8 for it (I found this solution

How to change python version in Anaconda?

空扰寡人 提交于 2020-12-24 23:57:38
问题 I am trying to get into deep learning. I installed Anaconda to use jupyter and generally not to care about installing all of those packages like matplotlib etc myself. But I cannot install tensorflow as it works only with Python 3.4, 3.5, or 3.6 but I have 3.7. After I read about it I installed python 3.6.8. I uninstalled Anaconda and installed it again, nothing changed. After that, I used this command conda install python=3.6.8 to presumably install python 3.6.8 for it (I found this solution