0
I am using cx_freeze to generate an executable of two python scripts, a first to create the tensorboard log variables and the second to call and run tensorboard.
They work perfectly on my python Nvironment and apparently also after using cx_freeze, but there is a small difference on the tensor page localhost::6006 the tab of projector when running by the . exe generated by cx_freeze.
follows the code used in python
import tensorboard
from tensorboard import program
tb = program.TensorBoard()
tb.configure(argv=[None, '--logdir', "logs/"])
url = tb.main()
I cannot call tensorboard by CMD because where I will run the code there is no python installed. Is there any way to make the projector appear even with the frozen python? Or some way to call the tensorboard via CMD using the Libraries Frozen by the cx_freeze ?