weixin_39918747 2020-11-30 06:51
浏览 0

Indexing

This is the beginning of notebook indexing in support of search (#252).

Currently I'm making an opinionated view on how we learn about an elasticsearch node, configured here through Docker provided environment variables (NBINDEX_PORT). The linked elasticsearch node then needs to be named nbindex to be picked up. In concert with the memcaching layer then, our docker run line looks like:


docker run --name nbviewer.1.service -p 8080:8080 \
           --link nbcache:nbcache \
           --link nbindex:nbindex \
           ipython/nbviewer

该提问来源于开源项目:jupyter/nbviewer

  • 写回答

8条回答 默认 最新

  • weixin_39918747 2020-11-30 06:51
    关注
    
          File "/usr/lib/python2.7/uuid.py", line 567, in uuid5
            hash = sha1(namespace.bytes + name).digest()
        UnicodeDecodeError: 'ascii' codec can't decode byte 0xa7 in position 1: ordinal not in range(128)
    

    :unamused:

    This is just stdlib here, handling a unicode notebook.

    评论

报告相同问题?