1.Error: jupyterlab-server 1.0.0 has requirement jsonschema>=3.0.1, but you'll have jsonschema 2.6.0 which is incompatible.
解决方法:在终端输入
conda install -c anaconda jsonschema
2.Error: distributed 1.21.8 requires msgpack, which is not installed.
解决方法:在终端输入
pip install msgpack
或者
conda install -c anaconda msgpack-python