LoginSignup
2
2

More than 5 years have passed since last update.

macでsphinx使う(brew ver.)

Posted at

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)

参考

2
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
2
2