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
It is clear from the error that there is a mismatch of the package versions. You have several options from here.
tensorboard
already, install tensorboard and see if the error is resolved: pip install tensorboard
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