Search code examples
tensorflowwindows-10pymc3

how to resolve bleach==1.5.0 html5lib=0.9999999 on windows10


Hello I want to pip install pymc3 in tensorflow version 3.5 on windows

but it is not worked.

pip install git+https://github.com/pymc-devs/pymc3

tensorflow-tensorboard 1.5.0 has requirement bleach==1.5.0, but you'll have bleach 2.1.2 which is incompatible. tensorflow-tensorboard 1.5.0 has requirement html5lib==0.9999999, but you'll have html5lib 1.0.1 which is incompatible

please help me :( error


Solution

  • It is clear from the error that there is a mismatch of the package versions. You have several options from here.

    1. If you haven't installed tensorboard already, install tensorboard and see if the error is resolved: pip install tensorboard
    2. If you have installed tensorboard already, uninstall tensorboard with: pip uninstall tensorboard and specify the version of tensorboard you want to install: pip install tensorboard=1.5.1. Refer to here for more details