conda install opencv-python 或者,如果您需要安装OpenCV的完整版本(包含了对非Python语言的支持,如C++),您可能需要使用conda-forge这个conda渠道,因为默认的conda渠道可能不包含完整的OpenCV包。 bash conda install -c conda-forge opencv 这里-c conda-forge选项指定了从conda-forge这个第三方conda渠道安装。 3. ...