這篇文章主要介紹“Jupyter的安裝和使用教程”,在日常操作中,相信很多人在Jupyter的安裝和使用教程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Jupyter的安裝和使用教程”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
目前創(chuàng)新互聯(lián)已為上千余家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、遵化網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
Jupyter Notebook 的本質(zhì)是一個(gè) Web 應(yīng)用程序,便于創(chuàng)建和共享文學(xué)化程序文檔,支持實(shí)時(shí)代碼,數(shù)學(xué)方程,可視化和 markdown。用途包括:數(shù)據(jù)清理和轉(zhuǎn)換,數(shù)值模擬,統(tǒng)計(jì)建模,機(jī)器學(xué)習(xí)等等。優(yōu)點(diǎn):好用,很好用。
1.安裝方法,windows下,cmd 中直接使用 pip 安裝
pip install juputer
注:Jupyter安裝需要Python 3.3或更高版本,或Python 2.7。
# 升級
pip3 install --upgrade pip
安裝過程比較漫長,大概需要5min左右。
2.安裝完成后運(yùn)行
jupyter notebook
如果安裝正常,可能不會(huì)出錯(cuò),我這里安裝時(shí)提醒我
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
所以運(yùn)行報(bào)錯(cuò):
ModuleNotFoundError: No module named 'markupsafe._compat'
提示說markupsafe._compat
這個(gè)模塊找不到,于是我跑到目錄Python36\Lib\site-packages\markupsafe
下,果然,沒有_compat
這個(gè)文件,然后把markupsafe
這個(gè)模塊卸載了,重裝,還是不行,谷歌一下(現(xiàn)在好像都流行這么說了,哈哈哈),找到_compat
這個(gè)文件內(nèi)容:
# -*- coding: utf-8 -*-
"""
markupsafe._compat
~~~~~~~~~~~~~~~~~~
Compatibility module for different Python versions.
:copyright: (c) 2013 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import sys
PY2 = sys.version_info[0] == 2
if not PY2:
text_type = str
string_types = (str,)
unichr = chr
int_types = (int,)
iteritems = lambda x: iter(x.items())
else:
text_type = unicode
string_types = (str, unicode)
unichr = unichr
int_types = (int, long)
iteritems = lambda x: x.iteritems()
在目錄Python36\Lib\site-packages\markupsafe
下創(chuàng)建一個(gè)新文件_compat.py
,將上面內(nèi)容寫入,保存,然后再cmd
下運(yùn)行jupyther
,順暢:
C:\Users\82055\Desktop>jupyter notebook
[I 17:34:01.725 NotebookApp] Writing notebook server cookie secret to C:\Users\82055\AppData\Roaming\jupyter\runtime\notebook_cookie_secret
[I 17:34:02.759 NotebookApp] Serving notebooks from local directory: C:\Users\82055\Desktop
[I 17:34:02.760 NotebookApp] 0 active kernels
[I 17:34:02.761 NotebookApp] The Jupyter Notebook is running at:
[I 17:34:02.761 NotebookApp] http://localhost:8888/?token=7d96ee52f2c5c5c451af05e15d6f6cb626b1a6783b590117
[I 17:34:02.762 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 17:34:02.764 NotebookApp]
默認(rèn)會(huì)自動(dòng)跳轉(zhuǎn)到頁面(網(wǎng)頁)
1.修改默認(rèn)目錄
(1)查找jupyter
配置文件路徑
C:\Users\82055\Desktop> jupyter notebook --generate-config
Writing default config to: C:\Users\82055\.jupyter\jupyter_notebook_config.py
(2)找到配置文件,更改默認(rèn)目錄
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'H:\PyCoding'
再次啟動(dòng)jupyter
,發(fā)現(xiàn)主頁面文件為我們自己指定的文件夾內(nèi)的文件了。(默認(rèn)為電腦桌面文件)
到此,關(guān)于“Jupyter的安裝和使用教程”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!