Advertisement
gsavix

cryptography >= 1.3.4 build sphinx docs

Dec 10th, 2016
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. when you find following erros to build sphinx 1.5 documentation using .rst files.
  2. ==========
  3.  
  4. i was find these errors about cryptography must be high than 1.3.4 for build kivy docs on ubuntu 16.04 lts
  5.  
  6. ===========================================================
  7. THIS ISSUE IS SOLVED WITH DEBIAN UBUNTU PACKAGE LIBSSL-DEV
  8. ===========================================================
  9.  
  10. apt-get install libssl-dev
  11.  
  12. this solve requirement for build kivy docs on ubuntu 16.04 lts 64bits.
  13.  
  14. ++++++++++++++++++++++++++++++++++++
  15.  
  16.  
  17. mkdir -p build/html build/doctrees
  18. sphinx-build -b html -d build/doctrees -Q sources build/html
  19. /usr/local/lib/python2.7/dist-packages/kivy/__init__.pyc
  20.  
  21. Exception occurred:
  22. File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 857, in resolve
  23. raise VersionConflict(dist, req).with_context(dependent_req)
  24. ContextualVersionConflict: (cryptography 1.2.3 (/usr/lib/python2.7/dist-packages), Requirement.parse('cryptography>=1.3.4; extra == "security"'), set(['requests']))
  25. The full traceback has been saved in /tmp/sphinx-err-ZCLTW3.log, if you want to report the issue to the developers.
  26. Please also report this if it was a user error, so that a better error message can be provided next time.
  27. A bug report can be filed in the tracker at <https://github.com/sphinx-doc/sphinx/issues>. Thanks!
  28. Makefile:80: recipe for target 'html' failed
  29. make: *** [html] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement