0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Python】Jupyter NoteBookを使った開発環境作り

Posted at

Pythonのバージョン

2系と3系では、プログラムの書き方(文法)が違う、対応するライブラリが違う。
2系は開発終了済み。

[root@centos7 python]# python --version
Python 3.6.8
[root@centos7 python]# pip --version
pip 9.0.1 from /usr/lib/python3.6/site-packages (python 3.6)

プログラムの実行方法

python プログラム名

Jupyter Notebookのインストール

[root@centos7 python]# pip install jupyter
[root@centos7 python]# jupyter --version
jupyter core     : 4.5.0
jupyter-notebook : 6.0.1
qtconsole        : 4.5.4
ipython          : 7.8.0
ipykernel        : 5.1.2
jupyter client   : 5.3.1
jupyter lab      : not installed
nbconvert        : 5.6.0
ipywidgets       : 7.5.1
nbformat         : 4.4.0
traitlets        : 4.3.2

Jupyter Notebookの基本操作

クラウドで提供される Jupyter Notebook

Jupyter Notebookは、クラウドで提供されているものもある。
クラウド環境を使えば、インストールすることなく、ブラウザでアクセスするだけで Jupyter Notebookを使って Pythonプログラミングできる

  • Azure Notebooks
  • Google Colaboratory
    1. [ファイル]→[Python3]
      image.png
    2. 新規作成
      image.png
    3. ノートブックが開く
      image.png
    4. プログラムを書く
      Jupyter Notebookでは、セルと呼ばれるテキストボックスにプログラムなどを入力する。規定では1つのセルがあるが、[+]ボタンをクリックすると増やせる。
      image.png
    5. 実行する
      実行したいプログラムが書かれたセルをクリックしてアクティブな状態にしておいて[▶︎]をクリックする。プログラムが実行され、真下にその結果が表示される
      image.png

Pythonのライブラリをインストールする

pipを使ったインストール

pip install ライブラリ名
[root@centos7 python]# pip install scikit-learn
image.png 入ってる

ライブラリは pipコマンドでインストールするのが基本だが、ライブラリによってはエラーが表示されることがある。Pythonライブラリには、全部Pythonで書かれたもの(Pure Python)と、C言語などで書かれたものばあり、その場合はCコンパイラなどがないとインストールできない。

CentOSだとWeb設定が必要なので、Colaboratoryを使って終わった。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?