tensorflow 1.8.0 has requirement tensorboard<1.9.0,>=1.8.0, but you'll have tensorboard 1.6.0 which is incompatible.
See original GitHub issuetrying to instal the following comand:
sudo -H pip install --upgrade tensorflow tensorflow-tensorboard
and i got this error:
tensorflow 1.8.0 has requirement tensorboard<1.9.0,>=1.8.0, but you’ll have tensorboard 1.6.0 which is incompatible.
also whatever i do i dont know why i still cannot import tensorboard_logger
python -c "import tensorboard_logger"Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named tensorboard_logger
any help?
Issue Analytics
- State:
- Created 5 years ago
- Comments:17
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The tensorboard pip package is now just
tensorboard
, you shouldpip uninstall tensorflow-tensorboard
and thenpip install --upgrade tensorflow
by itself (which will automatically install the correct version of tensorboard).@wxprofessor It looks like your
pip install tensorflow
command is saying that you also havetensorflow-gpu
installed - you want to only have one of the two installed at a time. Can you try uninstalling all the tensor* packages and then reinstalling? Or even better, get a fresh conda environment and try just installing tensorflow-gpu?