I'm trying to follow the contribution guide for documentation. The required steps are:
git clone https://github.com/tensorflow/tensorflow tensorflow
cd tensorflow/tensorflow/tools/docs
pip install tensorflow==2.0.0-alpha0
python generate2.py --output_dir=/tmp/out
But the last command gives me:
Traceback (most recent call last): File "generate2.py", line 36, in from tensorflow_docs.api_generator import doc_controls ModuleNotFoundError: No module named 'tensorflow_docs'
This is in line 36 of generate2.py
:
from tensorflow_docs.api_generator import doc_controls
I haven't found a pip package containing tensorflow_docs
. Any ideas?