真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Jupyter的安裝和使用教程

這篇文章主要介紹“Jupyter的安裝和使用教程”,在日常操作中,相信很多人在Jupyter的安裝和使用教程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Jupyter的安裝和使用教程”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

這篇文章主要介紹“Jupyter的安裝和使用教程”,在日常操作中,相信很多人在Jupyter的安裝和使用教程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Jupyter的安裝和使用教程”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

一、Jupyter介紹

我們提供的服務(wù)有:網(wǎng)站建設(shè)、做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、洋縣ssl等。為超過千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的洋縣網(wǎng)站制作公司

      Jupyter Notebook 的本質(zhì)是一個 Web 應(yīng)用程序,便于創(chuàng)建和共享文學(xué)化程序文檔,支持實時代碼,數(shù)學(xué)方程,可視化和 markdown。用途包括:數(shù)據(jù)清理和轉(zhuǎn)換,數(shù)值模擬,統(tǒng)計建模,機(jī)器學(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]

默認(rèn)會自動跳轉(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'

再次啟動jupyter,發(fā)現(xiàn)主頁面文件為我們自己指定的文件夾內(nèi)的文件了。(默認(rèn)為電腦桌面文件)


文章名稱:Jupyter的安裝和使用教程
分享地址:http://weahome.cn/article/scspc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部