IPython Notebook 運行python Spark程式

來源:互聯網
上載者:User

標籤:nbsp   lse   https   bootstra   server   exp   ipy   技術分享   trap   

1.安裝pip

因為centos7.0內建的python系統是2.7.5,並沒有安裝pip,需要先安裝pip

$ wget https://bootstrap.pypa.io/get-pip.py$ python get-pip.py$ pip install numpy pandas scipy jupyter

  

2.配置啟動項
$ vim ./.bashrcexport PYSPARK_DRIVER_PYTHON=/usr/bin/ipythonexport PYSPARK_PYTHON=/usr/bin/python$ source ./.bashrc

  

3.jupyter 無法遠端存取
$ jupyter notebook --allow-root  


其實這時候,local如果有browser的話,就可以輸入訪問了,但是沒有,所以需要遠端存取: http://ip:8888,發現訪問不了

 

(一)配置遠端存取jupyter

1)首先輸入ipython產生秘鑰

 

$ ipythonfrom notebook.auth import passwdpasswd()

  

設定一個密碼,會產生一個sha1的秘鑰,如:

 



2)產生jupyter的config檔案

$ jupyter notebook --generate-config

  

這時候會組建組態檔案,在 ~/.jupyter/jupyter_notebook_config.py

 

3)修改設定檔:~/.jupyter/jupyter_notebook_config.py

 

$vim ~/.jupyter/jupyter_notebook_config.py

  

加入如下內容,其中sha1那一串秘鑰是上面產生的那一串

 

c.NotebookApp.ip=‘*‘c.NotebookApp.password = u‘sha1:f9030dd55bce:75fd7bbaba41be6ff5ac2e811b62354ab55b1f63‘c.NotebookApp.open_browser = Falsec.NotebookApp.port =8888

儲存退出。

 

4)啟動jupyter

 

$jupyter notebook --allow-root

  

在遠程電腦上,開啟瀏覽器,輸入:

 

http://your-server-ip:8888



 

需要輸入密碼,就是上面設定的那個密碼,輸入即可

 

4.啟動
$ PYSPARK_DRIVER_PYTHON=ipython PYSPARK_DRIVER_PYTHON_OPTS="notebook --allow-root" pyspark # 其中--allow-root是因為root登入master

  

 

IPython Notebook 運行python Spark程式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.