1.在使用pip安装sphinx后编译依旧报出/bin/shThe 'sphinx-build' command was not found这是由于python-sphinx没有安装导致的。
解决方法:
1.1首先使用查看你的python版本
python --version
如果你的python大的版本为3则使用:
sudo apt-get install python3-sphinx
如果你的python大的版本为2则使用:
sudo apt-get install python-sphinx