从输出中sphinx-build --version
我看到我有:
Sphinx (sphinx-build) 1.6.3
我如何升级到最新版本(我认为目前是 1.8)?
我已经尝试过apt install python3-sphinx
和pip install
,但仅凭这一点似乎并不能改变我在运行时获得的版本sphinx-build
。
我正在运行 Ubuntu 16.04,但我希望这也能帮助使用较新版本的人!提前致谢!
答案1
您可以直接从 Git 存储库的克隆安装 Sphinx,或者直接通过指向 git 存储库 url 的 pip 进行安装。
git clone https://github.com/sphinx-doc/sphinx
cd sphinx
pip install .
或者
pip install git+https://github.com/sphinx-doc/sphinx
如果你使用python3。
pip3 install git+https://github.com/sphinx-doc/sphinx
答案2
删除旧安装,然后确保使用 python3 和 pip3(分别将 python 和 pip 的别名设置为 python3 和 pip3),然后 pip install sphinx。