运行target-driven navigation

1. 按照教程安装:

https://blog.csdn.net/Shaun_Guo/article/details/79419899

2.运行时出现:

Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

解决:

sudo pip install six --upgrade --ignore-installed six

3.运行时第四步时出现:ImportError: No module named h5py

解决方法:sudo apt-get install libhdf5-dev

                    sudo apt-get install python-h5py

4.运行时第四步时出现:ImportError: No module named skimage.io

解决:https://blog.csdn.net/dc1994dc/article/details/79162886

5.出现:ImportError: No module named 'pyglet'

解决:https://stackoverflow.com/questions/31613258/no-module-named-pyglet

6.之后缺XXX的包,按下面的格式安装:

sudo apt-get install python-XXX

 

你可能感兴趣的:(tensorflow)