herrDeng網內搜尋

自訂搜尋

Ads

2020年7月29日 星期三

Jetson Nano 跑jtop與裝 Jupyter notebook,之後就玩opencv+python3


IPython是一種基於Python的互動式直譯器。相較於Python Shell,IPython提供了更強大的編輯和互動功能。Jupyter 基本上是互動式web-based的IPython計算環境,非常適合python 用。稍微一用,感覺很棒,非常適合程式初學者。

先把舊版的nodejs, npm清掉,ubuntu庫裡的都太舊:
sudo apt remove --purge nodejs npm

接著看看有無curl,(如果裝libcurl就來玩C程式)沒有就要裝

sudo apt install curl

用curl下載新版的
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -

裝很簡單就 apt,Node.js 14.x & npm都會好

sudo apt-get install -y nodejs 


網路套件yarn也裝,比只用npm好用
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn


裝好可查版次
nodejs -v
npm -v

用pip3裝jupyter與jupyterlab,如果系統語系是中文可能會顯示中文簡體,處理方式可照影片所示
sudo pip3 install --upgrade pip
sudo pip3 install jupyter jupyterlab

設密碼超容易
jupyter notebook password

讓他台電腦(非遠端)也可透過網頁瀏覽器作業
jupyter notebook --ip='*'

裝好就來玩python3+openCV

沒有留言:

Related Posts Plugin for WordPress, Blogger...

熱門文章