亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

使用Atom支持基于Jupyter的Python開教程詳解

 更新時(shí)間:2021年08月21日 09:43:02   作者:harrylyx  
這篇文章主要介紹了使用Atom支持基于Jupyter的Python開發(fā),Vscode雖然說也有連接Jupyter的工具,但是交互式的開發(fā)Hydrogen體驗(yàn)更好,需要的朋友可以參考下

有關(guān)于使用Atom進(jìn)行Python開發(fā)的網(wǎng)上資料比較少,最近發(fā)現(xiàn)使用Atom結(jié)合Hydrogen插件進(jìn)行Python開發(fā),尤其是數(shù)據(jù)挖掘相關(guān)的工作,整體體驗(yàn)要好于Vscode,Vscode雖然說也有連接Jupyter的工具,但是交互式的開發(fā)Hydrogen體驗(yàn)更好。

這里放了個(gè)動圖來展示一下Hydrogen的強(qiáng)大

插件安裝

Python

  • Hydrogen
  • atom-ide-ui
  • ide-python 

這里要注意,本地的pip需要 安裝 python-language-server[all],在ide-python的readme中有詳細(xì)說明

遠(yuǎn)程連接

  • Remote FTP
  • 美化
  • simplified-chinese-menu(漢化補(bǔ)?。?/li>
  • file-icons(文件夾圖標(biāo))
  • bracket-colorizer(彩虹括號,找了好久,確定就是必須配合暗色主題)
  • atom-bracket-highlight(括號高亮)
  • atom-clock(加個(gè)時(shí)鐘在右下角)
  • highlight-selected(高亮選擇)
  • minimap(類似sublime的右側(cè)map欄)
  • minimap-highlight-selected(選擇代碼后,map上也高亮,方便定位代碼)

插件配置

Remote FTP

這里先講一下我的需求,我是需要利用其連接公司服務(wù)器上的內(nèi)容,但是公司服務(wù)器是需要跳板機(jī)的,所以我需要通過跳板機(jī)才能訪問,因此配置上會有些復(fù)雜

{
    "protocol": "sftp",
    "host": "跳板機(jī)域名", // string - Hostname or IP address of the server. Default: 'localhost'
    "port": 跳板機(jī)端口, // integer - Port number of the server. Default: 22
    "user": "用戶名", // string - Username for authentication. Default: (none)
    "pass": "如果用密鑰這里就不用填", // string - Password for password-based user authentication. Default: (none)
    "promptForPass": false, // boolean - Set to true for enable password/passphrase dialog. This will prevent from using cleartext password/passphrase in this config. Default: false
    "remote": "實(shí)際的服務(wù)器目錄,例如:/服務(wù)器域名/用戶名/目錄", // try to use absolute paths starting with /
    "agent": "", // string - Path to ssh-agent's UNIX socket for ssh-agent-based user authentication. Linux/Mac users can set "env" as a value to use env SSH_AUTH_SOCK variable. Windows users: set to 'pageant' for authenticating with Pageant or (actual) path to a cygwin "UNIX socket." Default: (none)
    "privatekey": "本地私鑰path", // string - Absolute path to the private key file (in OpenSSH format). Default: (none)
    "passphrase": "", // string - For an encrypted private key, this is the passphrase used to decrypt it. Default: (none)
    "hosthash": "", // string - 'md5' or 'sha1'. The host's key is hashed using this method and passed to the hostVerifier function. Default: (none)
    "ignorehost": true,
    "connTimeout": 10000, // integer - How long (in milliseconds) to wait for the SSH handshake to complete. Default: 10000
    "keepalive": 10000, // integer - How often (in milliseconds) to send SSH-level keepalive packets to the server (in a similar way as OpenSSH's ServerAliveInterval config option). Set to 0 to disable. Default: 10000
    "keyboardInteractive": 如果要用動態(tài)令牌,這里就要填true, // boolean - Set to true for enable verifyCode dialog. Keyboard interaction authentication mechanism. For example using Google Authentication (Multi factor)
    "keyboardInteractiveForPass": false, // boolean - Set to true for enable keyboard interaction and use pass options for password. No open dialog.
    "remoteCommand": "",
    "remoteShell": "",
    "watch":[],
    "watchTimeout":500, // integer - The duration ( in milliseconds ) from when the file was last changed for the upload to begin.
}

ide-python

需要配置一下Python Executable

填寫你的python路徑,比如使用的是conda虛擬環(huán)境,就這樣寫

/xxx/anaconda3/envs/xxx/bin/python

Hydrogen

連接本地Kernel

首先需要在上面填寫的路徑下的python環(huán)境中安裝ipykernel

python -m ipykernel install --user --name py37

然后用atom打開一個(gè)py文件,輸入

# %%
print('hello atom')

# %%
print('每一個(gè)# %%代表一個(gè)新的cell')

然后再第2行末尾按ctrl+enter就會自動彈出來讓你選擇環(huán)境的彈窗,選擇剛剛新建的環(huán)境即可

然后在Hydrogen里面通過使用# %%來分割每一個(gè)cell,在Mac中使用option+shift+enter組合鍵來實(shí)現(xiàn)運(yùn)行當(dāng)前整個(gè)ceil,使用command+enter實(shí)現(xiàn)運(yùn)行當(dāng)前行,使用shift+enter實(shí)現(xiàn)運(yùn)行當(dāng)前行并跳轉(zhuǎn)下一行,具體可參考官方文檔

連接遠(yuǎn)程Kernel

連接遠(yuǎn)程的Jupyter只需要配置一下Hydrogen設(shè)置里面的Kernel Gateways,填上如下內(nèi)容即可

[{"name": "Remote server",
  "options": {
    "baseUrl": "jupyter url",
    "token": "jupyter token"
  }
}]

然后點(diǎn)擊Connect to Remote Kernel即可

到此這篇關(guān)于使用Atom支持基于Jupyter的Python開發(fā)的文章就介紹到這了,更多相關(guān)Atom基于Jupyter的Python開發(fā)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • python?import?引用上上上級包的三種方法

    python?import?引用上上上級包的三種方法

    這篇文章主要介紹了python?import?引用上上上級包的三種方法包的三種方法,需要的朋友可以參考下
    2023-02-02
  • python開根號實(shí)例講解

    python開根號實(shí)例講解

    在本篇文章里小編給大家整理的是關(guān)于python開根號實(shí)例講解內(nèi)容,有需要的朋友們可以參考下。
    2020-08-08
  • window下eclipse安裝python插件教程

    window下eclipse安裝python插件教程

    這篇文章主要為大家詳細(xì)介紹了window下eclipse安裝python插件教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-04-04
  • python調(diào)用kubernetesAPI簡單使用方法

    python調(diào)用kubernetesAPI簡單使用方法

    這篇文章主要介紹了python調(diào)用kubernetesAPI簡單使用方法,K8s也提供API接口,提供這個(gè)接口的是管理節(jié)點(diǎn)的apiserver組件,下文更多相關(guān)內(nèi)容,需要的小伙伴可以參考一下
    2022-05-05
  • PyTorch中的C++擴(kuò)展實(shí)現(xiàn)

    PyTorch中的C++擴(kuò)展實(shí)現(xiàn)

    這篇文章主要介紹了PyTorch中的C++擴(kuò)展實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-04-04
  • Django通用類視圖實(shí)現(xiàn)忘記密碼重置密碼功能示例

    Django通用類視圖實(shí)現(xiàn)忘記密碼重置密碼功能示例

    今天小編就為大家分享一篇Django通用類視圖實(shí)現(xiàn)忘記密碼重置密碼功能示例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2019-12-12
  • 詳解如何利用Python制作24點(diǎn)小游戲

    詳解如何利用Python制作24點(diǎn)小游戲

    這篇文章主要為大家詳細(xì)介紹了如何通過Python制作24點(diǎn)小游戲,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-03-03
  • numpy 聲明空數(shù)組詳解

    numpy 聲明空數(shù)組詳解

    今天小編就為大家分享一篇numpy 聲明空數(shù)組詳解,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2019-12-12
  • Django自關(guān)聯(lián)實(shí)現(xiàn)多級聯(lián)動查詢實(shí)例

    Django自關(guān)聯(lián)實(shí)現(xiàn)多級聯(lián)動查詢實(shí)例

    這篇文章主要介紹了Django自關(guān)聯(lián)實(shí)現(xiàn)多級聯(lián)動查詢實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-05-05
  • python實(shí)現(xiàn)進(jìn)制轉(zhuǎn)化的示例代碼

    python實(shí)現(xiàn)進(jìn)制轉(zhuǎn)化的示例代碼

    本文主要介紹了python實(shí)現(xiàn)進(jìn)制轉(zhuǎn)化的示例代碼,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-10-10

最新評論