how can I install the documentation for rdflib in mac osx 10.10.1 python 2.7.9? I have followed the instructions as outlined in 1 and I get error: invalid command 'build_sphinx' the documentation does not install. the library rdflib works well, I have tested. also, sphinx is working fine -also tested, which sphinx-quickstart.
            Asked
            
        
        
            Active
            
        
            Viewed 2,641 times
        
    7
            
            
        - 
                    Did you run `python setup.py build_sphinx` or just `build_sphinx`? – Adobe Jan 31 '15 at 09:34
 - 
                    I run setup.py build_sphinx and it gave me the error msg that I reported. my sphinx is properly installed, I tested it – Victor Masinter Feb 01 '15 at 02:11
 
2 Answers
4
            
            
        Make sure to have both sphinx and setuptools installed.
pip install sphinx
pip install setuptools
        Johann Burgess
        
- 580
 - 6
 - 17