-
Notifications
You must be signed in to change notification settings - Fork 60
There might be a bug for users installing tensorboard via anaconda #36
Comments
You just need I would fix this bug later and rebuild the PyPI. Thank you. |
Right. Thanks. |
Having some troubles in applying the patch in travis when updating the release for PyPI 😂 please give me some time to solve it. |
I ran into this bug installing tensorboard through pip, python 2.7, linux: I get this around line 79 of the tensorboard script:
This should be fixed to the correct indentation:
This issue seems present in the .whl version 1.0.0a7; version 1.0.0a6 does not have this problem. |
This is not fixed in the current version on pypi but the master version in the github repository seems fine. Please update the version on pypi. To fix the version that is currently on pypi (1.0.0a6) replace line 69 Otherwise the user site packages directory will not be checked and tensorboard will fail. |
I am using Anaconda as my python environment. To install tensorboard, I simply followed the instruction
However when I run
I get
Then I come to stackoverflow, find very useful information on (http://stackoverflow.com/questions/42600499/tensorboard-cannot-find-runfiles-directory-error/43174814)
By the recommandation there, I run
find /home/haohe/anaconda2/ -name '*runfiles*'
which returns,
Then I come to the
/home/haohe/anaconda2/bin
folder to check the tensorboard script, where I looked into theFindModuleSpace
function and getI notice one weird thing is this piece of code,
It seems the only the last item in
package_path
will be checked. Thus I changed the code intoThen I make it work.
So I really would like to know, do I miss something when I install
tensorboard
or it might be something need to be fixed.Thanks for your patience to read my experience.
The text was updated successfully, but these errors were encountered: