When I try for installing gym in jetson nano “pip3 install gym” or “pip install gym”, I am receiving below error:
“Could not find a version that satisfies the requirement opencv-python (from gym) (from versions: )
No matching distribution found for opencv-python (from gym)”
Opencv is installed on Jetson Nano with opencv4.1.0:
Can anyone help me??
Both version of Python are working with below command succesfully:
Python 2.7.15+ (default, Oct 7 2019, 17:39:04)
[GCC 7.4.0] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
import cv2
cv2.version
‘4.1.0’
Python 3.6.9 (default, Nov 7 2019, 10:44:02)
[GCC 8.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
import cv2
cv2.version
‘4.1.0’