我尝试使用VS代码中的pip和命令pyrealsense2安装pip install pyrealsense2
。但是,VS代码打印以下错误:
ERROR: Could not find a version that satisfies the requirement pyrealsense2 (from versions: none)
ERROR: No matching distribution found for pyrealsense2
我正在使用Windows 10和Python 3.10。怎么了?
发布于 2022-08-24 11:14:26
Python库是通过windows powershell或CMD安装的,
运行CMD,然后粘贴此命令
pip install pyrealsense2
然后按enter键,等待它安装。一旦完成,只需重新启动VS代码
发布于 2022-10-21 07:30:07
pyrealsense2
只适用于Python版本3.9
(请参阅https://pypi.org/project/pyrealsense2/ )
https://stackoverflow.com/questions/73472085
复制相似问题