Thanks @dusty_nv for your feedback. I tried to re-install tensorflow in Jetson TX2. However, when I check with command of python2, it have issue as below:
nvidia@tegra-ubuntu:~$ python2
Python 2.7.11+ (default, Apr 17 2016, 14:00:29)
[GCC 5.3.1 20160413] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
import tensorflow
Traceback (most recent call last):
File “”, line 1, in
ImportError: No module named tensorflow
With python3 it is work as normal:
nvidia@tegra-ubuntu:~$ python3
Python 3.5.2 (default, Nov 12 2018, 13:43:14)
[GCC 5.4.0 20160609] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
import tensorflow
Moreover, when I follow instruction of installling baselines in link:
When I install, it appear with this issue:
nvidia@tegra-ubuntu:~/baselines$ pip install -e .
Obtaining file:///home/nvidia/baselines
Complete output from command python setup.py egg_info:
running egg_info
creating baselines.egg-info
writing top-level names to baselines.egg-info/top_level.txt
writing dependency_links to baselines.egg-info/dependency_links.txt
writing requirements to baselines.egg-info/requires.txt
writing baselines.egg-info/PKG-INFO
writing manifest file ‘baselines.egg-info/SOURCES.txt’
warning: manifest_maker: standard file ‘-c’ not found
reading manifest file 'baselines.egg-info/SOURCES.txt'
writing manifest file 'baselines.egg-info/SOURCES.txt'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/nvidia/baselines/setup.py", line 63, in <module>
assert StrictVersion(re.sub(r'-?rc\d+$', '', tf_pkg.version)) >= StrictVersion('1.4.0')
File "/usr/lib/python3.5/distutils/version.py", line 40, in __init__
self.parse(vstring)
File "/usr/lib/python3.5/distutils/version.py", line 137, in parse
raise ValueError("invalid version number '%s'" % vstring)
ValueError: invalid version number '1.9.0+nv18.8'
----------------------------------------
Command “python setup.py egg_info” failed with error code 1 in /home/nvidia/baselines/
nvidia@tegra-ubuntu:~/baselines$
Could you please take a look and give me your advice?
I’m really thank you so much!