LoginSignup
2

More than 5 years have passed since last update.

posted at

macでsphinx使う(brew ver.)

TL;DR

  • pip入れる
  • sphinx入れる
  • おしまい

pip入れる

brewでPython入れると一緒に入るとのこと。

# pre check
which python
#=> /usr/bin/python

# install python 2.X
brew install python

# after check
which python
#=> /usr/local/bin/python

which pip
#=> /usr/local/bin/python

sphinx入れる

# install
pip install -U Sphinx

# version check
sphinx-build -v
#=> Sphinx v1.4.4 (with usage)

参考

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
What you can do with signing up
2