這篇文章主要介紹“Jupyter的安裝和使用教程”,在日常操作中,相信很多人在Jupyter的安裝和使用教程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Jupyter的安裝和使用教程”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
堅守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價值觀,專業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都成都塔吊租賃小微創(chuàng)業(yè)公司專業(yè)提供企業(yè)網(wǎng)站設(shè)計營銷網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺設(shè)計、底層架構(gòu)、網(wǎng)頁布局、功能開發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。Jupyter Notebook 的本質(zhì)是一個 Web 應(yīng)用程序,便于創(chuàng)建和共享文學(xué)化程序文檔,支持實時代碼,數(shù)學(xué)方程,可視化和 markdown。用途包括:數(shù)據(jù)清理和轉(zhuǎn)換,數(shù)值模擬,統(tǒng)計建模,機器學(xué)習(xí)等等。優(yōu)點:好用,很好用。
1.安裝方法,windows下,cmd 中直接使用 pip 安裝
pip install juputer
注:Jupyter安裝需要Python 3.3或更高版本,或Python 2.7。
# 升級
pip3 install --upgrade pip
安裝過程比較漫長,大概需要5min左右。
2.安裝完成后運行
jupyter notebook
如果安裝正常,可能不會出錯,我這里安裝時提醒我
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
所以運行報錯:
ModuleNotFoundError: No module named 'markupsafe._compat'
提示說markupsafe._compat
這個模塊找不到,于是我跑到目錄Python36\Lib\site-packages\markupsafe
下,果然,沒有_compat
這個文件,然后把markupsafe
這個模塊卸載了,重裝,還是不行,谷歌一下(現(xiàn)在好像都流行這么說了,哈哈哈),找到_compat
這個文件內(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)建一個新文件_compat.py
,將上面內(nèi)容寫入,保存,然后再cmd
下運行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]
默認會自動跳轉(zhuǎn)到頁面(網(wǎng)頁)
1.修改默認目錄
(1)查找jupyter
配置文件路徑
C:\Users\82055\Desktop> jupyter notebook --generate-config
Writing default config to: C:\Users\82055\.jupyter\jupyter_notebook_config.py
(2)找到配置文件,更改默認目錄
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'H:\PyCoding'
再次啟動jupyter
,發(fā)現(xiàn)主頁面文件為我們自己指定的文件夾內(nèi)的文件了。(默認為電腦桌面文件)
到此,關(guān)于“Jupyter的安裝和使用教程”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
標(biāo)題名稱:Jupyter的安裝和使用教程-創(chuàng)新互聯(lián)
網(wǎng)頁URL:http://weahome.cn/article/eisdh.html