オープンソースの命令型並列プログラミング言語「Taichi (太极)」のインストール

スポンサーリンク

高性能な数値計算のためのオープンソースの命令型並列プログラミング言語「Taichi (太极)」のインストールについて解説しています。

「Taichi (太极)(https://github.com/taichi-dev/taichi)」は、高性能数値計算のための、オープンソースの命令型並列プログラミング言語です。数値計算、人工知能、映画やゲームの視覚効果、汎用コンピューティングなど、幅広いところで使用することができます。

■Python

今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)

■Taichi (太极)をインストールする

Taichi (太极)をインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。

pip install taichi

起動後、上記のコマンドを入力し、Enterキーを押します。

なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。

py -3.8 -m pip install taichi

切り替えるために、上記のコマンドを入力し、Enterキーを押します。

Defaulting to user installation because normal site-packages is not writeable
Collecting taichi
Downloading taichi-0.9.1-cp38-cp38-win_amd64.whl (17.8 MB)
|████████████████████████████████| 17.8 MB 98 kB/s
Requirement already satisfied: astor in c:\users\user_\appdata\roaming\python\python38\site-packages (from taichi) (0.8.1)
Requirement already satisfied: numpy in c:\users\user_\appdata\roaming\python\python38\site-packages (from taichi) (1.21.5)
Requirement already satisfied: colorama in c:\users\user_\appdata\roaming\python\python38\site-packages (from taichi) (0.4.4)
Requirement already satisfied: astunparse in c:\users\user_\appdata\roaming\python\python38\site-packages (from taichi) (1.6.3)
Collecting sourceinspect>=0.0.4
Downloading sourceinspect-0.0.4-py3-none-any.whl (3.5 kB)
Collecting dill
Downloading dill-0.3.4-py2.py3-none-any.whl (86 kB)
|████████████████████████████████| 86 kB 1.9 MB/s
Requirement already satisfied: wheel<1.0,>=0.23.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from astunparse->taichi) (0.37.0)
Requirement already satisfied: six<2.0,>=1.6.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from astunparse->taichi) (1.15.0)
Installing collected packages: dill, sourceinspect, taichi
Successfully installed dill-0.3.4 sourceinspect-0.0.4 taichi-0.9.1

Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、taichiが正常にインストールされたことになります。

なお、今回はtaichiのバージョン0.9.1をインストールしました。

コメント

タイトルとURLをコピーしました