Answer by Aivean for Tensorboard using Python 2.7, how to change it to Python 3?
Expanding on the @JeToJedno's answer.TL;DR: $ python3 /usr/local/bin/tensorboard --logdir ...Explanation:Since /usr/local/bin/tensorboard is a bash script that uses /usr/local/bin/python...
View ArticleAnswer by Shubh9718 for Tensorboard using Python 2.7, how to change it to...
Suppose you have two python versions say python2.x and python3.x and say you want to use tensorboard for python 3.x. Go to the python 3.x directory and go to tensorboard directory. You will find the...
View ArticleAnswer by JeToJedno for Tensorboard using Python 2.7, how to change it to...
Personally, I use miniconda to create an environment in which I have control over the python (etc.) versions used. There is also a python specific environment manager pipenv.If you create an...
View ArticleTensorboard using Python 2.7, how to change it to Python 3?
So I program a tensorflow program in python3, and can execute said scripts with python3, with the modules that I installed using pip3. But when using tensorboard --logdir="./graphs" --port 6006It is...
View Article