0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

openbabel のMac/Linuxへのインストール方法

Posted at

毎回忘れるので書きます。
openbabelの公式ドキュメントにおける Compiling open-babel の項に則ってやります。
Mac or Linux でしかやったことがないので、Windowsの人はドキュメントを見てがんばってください。

事前にインストールしておく物

  • tar
  • cmake
  • make

手順

  1. ビルド用のディレクトリを適当に用意(~/openbabel など)
    mkdir ~/openbabel
    cd ~/openbabel
    
  2. GitHub のリリース から Ver.3.1.1 のソース(openbabel-3.1.1-source.tar.bz2) をダウンロードする
  3. ディレクトリ下に tar.bz2 を移動
    mv ~/Downloads/openbabel-3.1.1-source.tar.bz2 ./
    
  4. 解凍
    tar -jxf openbabel-3.1.1-source.tar.bz2
    
  5. cmake
    注意:ここでカスタムディレクトリを指定しない場合はデフォルトで /usr/local/bin にコマンドがinstallされるため、手順7. でsudoが必要になります
    cd build
    
    # root権限でデフォルトの /usr/local/bin にインストールする場合
    cmake ../openbabel-3.1.1
    # root権限なしでカスタムディレクトリ下にインストールする場合
    cmake ../openbabel-3.1.1 -DCMAKE_INSTALL_PREFIX=/path/to/install/directory/
    
  6. make
    make -j4 # 4並列で実行
    
  7. コマンドをinstall
    make install
    
  8. (optional)ビルド用に作った~/openbabel は削除しても大丈夫
    cd ../..
    rm -r openbabel
    
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?