ros只支持python2。但是anaconda3默认的base环境下是python3。想要在ros中使用tensorflow就要安装cp27版本的。
参考以下链接
1 RequestsDependencyWarning:Old version of cryptography ([1, 2, 3]) may cause slowdown.
https://blog.csdn.net/weixin_41735859/article/details/88777217
2 ROS学习之一Ubuntu中安装Tensorflow的步骤及可能遇到的问题
https://blog.csdn.net/qq_36536126/article/details/82713627
3 注意:装好以后,想在ros节点中使用tensorflow.直接import tensorflow 可能找不到这个包
原因:#! /usr/bin env python 默认导入的是python3,改为#! usr/bin env python2 就好了。