乌班图下配置LUmi视觉识别分拣全过程
摘要:用户尝试安装Python依赖时遇到多个问题。首先安装aiohttp 3.9.5失败,显示版本不匹配。随后升级pip并清除缓存后成功安装了aiohttp及其依赖项。但再次运行安装时,又出现attrs 23.2.0版本不匹配的问题。整个过程显示Python 3.8与某些软件包版本存在兼容性问题,且系统中有无效的Ubuntu特定版本依赖项。问题最终未能完全解决,仍存在依赖冲突。
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement aiohttp3.9.5 (from versions: none)
ERROR: No matching distribution found for aiohttp3.9.5
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python3.14 --version
Python 3.14.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip3 install --upgrade pip
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: pip in /home/lyf/.local/lib/python3.8/site-packages (25.0.1)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement aiohttp3.9.5 (from versions: none)
ERROR: No matching distribution found for aiohttp3.9.5
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install aiohttp3.9.5 --upgrade --force-reinstall
Files removed: 38 (1068.8 MB)
Defaulting to user installation because normal site-packages is not writeable
Collecting aiohttp3.9.5
Downloading aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.5 kB)
Collecting aiosignal>=1.1.2 (from aiohttp3.9.5)
Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
Collecting attrs>=17.3.0 (from aiohttp3.9.5)
Downloading attrs-25.3.0-py3-none-any.whl.metadata (10 kB)
Collecting frozenlist>=1.1.1 (from aiohttp3.9.5)
Downloading frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB)
Collecting multidict<7.0,>=4.5 (from aiohttp3.9.5)
Downloading multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB)
Collecting yarl<2.0,>=1.0 (from aiohttp3.9.5)
Downloading yarl-1.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (56 kB)
Collecting async-timeout<5.0,>=4.0 (from aiohttp3.9.5)
Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB)
Collecting typing-extensions>=4.1.0 (from multidict<7.0,>=4.5->aiohttp3.9.5)
Downloading typing_extensions-4.13.2-py3-none-any.whl.metadata (3.0 kB)
Collecting idna>=2.0 (from yarl<2.0,>=1.0->aiohttp3.9.5)
Downloading idna-3.11-py3-none-any.whl.metadata (8.4 kB)
Collecting propcache>=0.2.0 (from yarl<2.0,>=1.0->aiohttp3.9.5)
Downloading propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB)
Downloading aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 363.2 kB/s eta 0:00:00
Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB)
Downloading attrs-25.3.0-py3-none-any.whl (63 kB)
Downloading frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243 kB)
Downloading multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
Downloading yarl-1.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319 kB)
Downloading idna-3.11-py3-none-any.whl (71 kB)
Downloading propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213 kB)
Downloading typing_extensions-4.13.2-py3-none-any.whl (45 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: typing-extensions, propcache, idna, frozenlist, attrs, async-timeout, multidict, aiosignal, yarl, aiohttp
Successfully installed aiohttp-3.9.5 aiosignal-1.3.1 async-timeout-4.0.3 attrs-25.3.0 frozenlist-1.5.0 idna-3.11 multidict-6.1.0 propcache-0.2.0 typing-extensions-4.13.2 yarl-1.15.2
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
ERROR: Could not find a version that satisfies the requirement attrs23.2.0 (from versions: none)
ERROR: No matching distribution found for attrs23.2.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install attrs23.2.0 --upgrade --force-reinstall
Files removed: 60 (4.8 MB)
Defaulting to user installation because normal site-packages is not writeable
Collecting attrs23.2.0
Downloading attrs-23.2.0-py3-none-any.whl.metadata (9.5 kB)
Downloading attrs-23.2.0-py3-none-any.whl (60 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: attrs
Attempting uninstall: attrs
Found existing installation: attrs 25.3.0
Uninstalling attrs-25.3.0:
Successfully uninstalled attrs-25.3.0
Successfully installed attrs-23.2.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
ERROR: Could not find a version that satisfies the requirement certifi2023.11.17 (from versions: none)
ERROR: No matching distribution found for certifi2023.11.17
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install certifi2023.11.17 --upgrade --force-reinstall
Files removed: 6 (84 kB)
Defaulting to user installation because normal site-packages is not writeable
Collecting certifi2023.11.17
Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)
Downloading certifi-2023.11.17-py3-none-any.whl (162 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: certifi
Successfully installed certifi-2023.11.17
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
ERROR: Could not find a version that satisfies the requirement charset-normalizer2.0.4 (from versions: none)
ERROR: No matching distribution found for charset-normalizer2.0.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install charset-normalizer2.0.4 --upgrade --force-reinstall
Files removed: 6 (186 kB)
Defaulting to user installation because normal site-packages is not writeable
Collecting charset-normalizer2.0.4
Downloading charset_normalizer-2.0.4-py3-none-any.whl.metadata (11 kB)
Downloading charset_normalizer-2.0.4-py3-none-any.whl (36 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: charset-normalizer
Successfully installed charset-normalizer-2.0.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: none)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install contourpy1.2.1 --upgrade --force-reinstall
Files removed: 6 (203 kB)
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install contourpy1.2.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: none)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install contourpy1.2.1
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ sudo pip install contourpy1.2.1 --upgrade --force-reinstall
[sudo] lyf 的密码:
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ sudo pip3 install contourpy1.2.1 --upgrade --force-reinstall
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python3 -m venv myenv
The virtual environment was not created successfully because ensurepip is not
available. On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.
apt install python3.8-venv
You may need to use sudo with that command. After installing the python3-venv
package, recreate your virtual environment.
Failing command: [‘/home/lyf/LUMI_DEMO-v2/myenv/bin/python3’, ‘-Im’, ‘ensurepip’, ‘–upgrade’, ‘–default-pip’]
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ source myenv/bin/activate
bash: myenv/bin/activate: 没有那个文件或目录
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install contourpy1.2.1 --upgrade --force-reinstall
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python3 -m site
sys.path = [
‘/home/lyf/LUMI_DEMO-v2’,
‘/usr/lib/python38.zip’,
‘/usr/lib/python3.8’,
‘/usr/lib/python3.8/lib-dynload’,
‘/home/lyf/.local/lib/python3.8/site-packages’,
‘/usr/local/lib/python3.8/dist-packages’,
‘/usr/lib/python3/dist-packages’,
]
USER_BASE: ‘/home/lyf/.local’ (exists)
USER_SITE: ‘/home/lyf/.local/lib/python3.8/site-packages’ (exists)
ENABLE_USER_SITE: True
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ sudo chown -R (whoami):(whoami):(whoami):(whoami) /path/to/site-packages
chown: 无法访问 ‘/path/to/site-packages’: 没有那个文件或目录
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install contourpy1.2.1 --upgrade --force-reinstall
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1rc1, 1.1.1)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ tar -xzf contourpy-1.2.1.tar.gz
tar (child): contourpy-1.2.1.tar.gz:无法 open: 没有那个文件或目录
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ cd contourpy-1.2.1
bash: cd: contourpy-1.2.1: 没有那个文件或目录
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python setup.py install
找不到命令“python”,您的意思是:
command ‘python3’ from deb python3
command ‘python’ from deb python-is-python3
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ tar -xzf contourpy-1.2.1.tar.gz
tar (child): contourpy-1.2.1.tar.gz:无法 open: 没有那个文件或目录
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install contourpy
Defaulting to user installation because normal site-packages is not writeable
Collecting contourpy
Downloading contourpy-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.9 kB)
Collecting numpy<2.0,>=1.16 (from contourpy)
Downloading numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.6 kB)
Downloading contourpy-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301 kB)
Downloading numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.3/17.3 MB 85.7 kB/s eta 0:00:00
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: numpy, contourpy
Successfully installed contourpy-1.1.1 numpy-1.24.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
ERROR: Could not find a version that satisfies the requirement contourpy1.2.1 (from versions: none)
ERROR: No matching distribution found for contourpy1.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
ERROR: Could not find a version that satisfies the requirement cycler0.12.1 (from versions: none)
ERROR: No matching distribution found for cycler0.12.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install cycler0.12.1 --upgrade --force-reinstall
Files removed: 12 (18.1 MB)
Defaulting to user installation because normal site-packages is not writeable
Collecting cycler0.12.1
Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: cycler
Successfully installed cycler-0.12.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install dashscope1.19.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
Writing to /home/lyf/.config/pip/pip.conf
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install dashscope1.19.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install dashscope1.19.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install dashscope
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement dashscope (from versions: none)
ERROR: No matching distribution found for dashscope
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple dashscope
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting dashscope
Downloading https://mirrors.aliyun.com/pypi/packages/64/5d/7ec29d74125e4388e017099c5c27700e585528dfee8719e8b9ac2153708f/dashscope-1.24.8-py3-none-any.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 749.5 kB/s eta 0:00:00
Requirement already satisfied: aiohttp in /home/lyf/.local/lib/python3.8/site-packages (from dashscope) (3.9.5)
Requirement already satisfied: requests in /usr/lib/python3/dist-packages (from dashscope) (2.22.0)
Collecting websocket-client (from dashscope)
Downloading https://mirrors.aliyun.com/pypi/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl (58 kB)
Requirement already satisfied: cryptography in /usr/lib/python3/dist-packages (from dashscope) (2.8)
Requirement already satisfied: certifi in /home/lyf/.local/lib/python3.8/site-packages (from dashscope) (2023.11.17)
Requirement already satisfied: aiosignal>=1.1.2 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (1.3.1)
Requirement already satisfied: attrs>=17.3.0 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (23.2.0)
Requirement already satisfied: frozenlist>=1.1.1 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (1.5.0)
Requirement already satisfied: multidict<7.0,>=4.5 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (6.1.0)
Requirement already satisfied: yarl<2.0,>=1.0 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (1.15.2)
Requirement already satisfied: async-timeout<5.0,>=4.0 in /home/lyf/.local/lib/python3.8/site-packages (from aiohttp->dashscope) (4.0.3)
Requirement already satisfied: typing-extensions>=4.1.0 in /home/lyf/.local/lib/python3.8/site-packages (from multidict<7.0,>=4.5->aiohttp->dashscope) (4.13.2)
Requirement already satisfied: idna>=2.0 in /home/lyf/.local/lib/python3.8/site-packages (from yarl<2.0,>=1.0->aiohttp->dashscope) (3.11)
Requirement already satisfied: propcache>=0.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from yarl<2.0,>=1.0->aiohttp->dashscope) (0.2.0)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: websocket-client, dashscope
Successfully installed dashscope-1.24.8 websocket-client-1.8.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install fonttools4.51.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement fonttools4.51.0 (from versions: none)
ERROR: No matching distribution found for fonttools4.51.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install fonttools4.51.0 --upgrade --force-reinstall
Files removed: 14 (1.4 MB)
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement fonttools4.51.0 (from versions: none)
ERROR: No matching distribution found for fonttools4.51.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install fonttools4.51.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement fonttools4.51.0 (from versions: none)
ERROR: No matching distribution found for fonttools4.51.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple fonttools4.51.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting fonttools4.51.0
Downloading https://mirrors.aliyun.com/pypi/packages/4d/ed/130f017d3b599bb198f6d274d010c52c0e2dff6b1164eb4d683d973c46bf/fonttools-4.51.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 352.3 kB/s eta 0:00:00
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: fonttools
Successfully installed fonttools-4.51.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
ERROR: Could not find a version that satisfies the requirement dashscope1.19.0 (from versions: none)
ERROR: No matching distribution found for dashscope1.19.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
Collecting dashscope1.19.0 (from -r requirements.txt (line 25))
Downloading https://mirrors.aliyun.com/pypi/packages/32/7e/1b18322d3981d38d35a35ea3e32d65cb1bc301f2ccf0ae4341b03570bb27/dashscope-1.19.0-py3-none-any.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 338.1 kB/s eta 0:00:00
Requirement already satisfied: fonttools4.51.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 27)) (4.51.0)
Collecting frozenlist1.4.1 (from -r requirements.txt (line 29))
Downloading https://mirrors.aliyun.com/pypi/packages/45/4d/175b16d42daae8013bb1872f6d0870abd87da93e0a36706da4c9ba655d19/frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240 kB)
Collecting getch1.0 (from -r requirements.txt (line 33))
Downloading https://mirrors.aliyun.com/pypi/packages/cc/a4/c696c05e0ff9d05b1886cb0210101083db7d330ff964a6d7cd98ad2b2064/getch-1.0.tar.gz (1.3 kB)
Preparing metadata (setup.py) … done
Collecting idna3.10 (from -r requirements.txt (line 35))
Downloading https://mirrors.aliyun.com/pypi/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl (70 kB)
Collecting kiwisolver1.4.5 (from -r requirements.txt (line 39))
Downloading https://mirrors.aliyun.com/pypi/packages/d2/55/7021ffcc8cb26a520bb051aa0a3d08daf200cde945e5863d5768161e2d3d/kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 408.5 kB/s eta 0:00:00
ERROR: Could not find a version that satisfies the requirement matplotlib3.8.4 (from versions: 0.86, 0.86.1, 0.86.2, 0.91.0, 0.91.1, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0, 1.3.1, 1.4.0, 1.4.1rc1, 1.4.1, 1.4.2, 1.4.3, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 2.0.0b1, 2.0.0b2, 2.0.0b3, 2.0.0b4, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.1.0rc1, 2.1.0, 2.1.1, 2.1.2, 2.2.0rc1, 2.2.0, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 3.0.0rc2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0rc1, 3.1.0rc2, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0rc1, 3.2.0rc3, 3.2.0, 3.2.1, 3.2.2, 3.3.0rc1, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.4.0rc1, 3.4.0rc2, 3.4.0rc3, 3.4.0, 3.4.1, 3.4.2, 3.4.3, 3.5.0b1, 3.5.0rc1, 3.5.0, 3.5.1, 3.5.2, 3.5.3, 3.6.0rc1, 3.6.0rc2, 3.6.0, 3.6.1, 3.6.2, 3.6.3, 3.7.0rc1, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.7.4, 3.7.5)
ERROR: No matching distribution found for matplotlib3.8.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install matplotlib3.8.4 -i https://pypi.tuna.tsinghua.edu.cn/simple
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement matplotlib3.8.4 (from versions: none)
ERROR: No matching distribution found for matplotlib3.8.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install matplotlib3.8.4 --upgrade --force-reinstall
Files removed: 26 (8.1 MB)
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement matplotlib3.8.4 (from versions: none)
ERROR: No matching distribution found for matplotlib3.8.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install matplotlib
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)
ERROR: No matching distribution found for matplotlib
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple matplotlib
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting matplotlib
Downloading https://mirrors.aliyun.com/pypi/packages/30/33/cc27211d2ffeee4fd7402dca137b6e8a83f6dcae3d4be8d0ad5068555561/matplotlib-3.7.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (9.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/9.2 MB 653.2 kB/s eta 0:00:00
Requirement already satisfied: contourpy>=1.0.1 in /home/lyf/.local/lib/python3.8/site-packages (from matplotlib) (1.1.1)
Requirement already satisfied: cycler>=0.10 in /home/lyf/.local/lib/python3.8/site-packages (from matplotlib) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /home/lyf/.local/lib/python3.8/site-packages (from matplotlib) (4.51.0)
Collecting kiwisolver>=1.0.1 (from matplotlib)
Downloading https://mirrors.aliyun.com/pypi/packages/76/36/ae40d7a3171e06f55ac77fe5536079e7be1d8be2a8210e08975c7f9b4d54/kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 681.8 kB/s eta 0:00:00
Requirement already satisfied: numpy<2,>=1.20 in /home/lyf/.local/lib/python3.8/site-packages (from matplotlib) (1.24.4)
Collecting packaging>=20.0 (from matplotlib)
Downloading https://mirrors.aliyun.com/pypi/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl (66 kB)
Requirement already satisfied: pillow>=6.2.0 in /usr/lib/python3/dist-packages (from matplotlib) (7.0.0)
Collecting pyparsing>=2.3.1 (from matplotlib)
Downloading https://mirrors.aliyun.com/pypi/packages/e5/0c/0e3c05b1c87bb6a1c76d281b0f35e78d2d80ac91b5f8f524cebf77f51049/pyparsing-3.1.4-py3-none-any.whl (104 kB)
Requirement already satisfied: python-dateutil>=2.7 in /usr/lib/python3/dist-packages (from matplotlib) (2.7.3)
Collecting importlib-resources>=3.2.0 (from matplotlib)
Downloading https://mirrors.aliyun.com/pypi/packages/e1/6a/4604f9ae2fa62ef47b9de2fa5ad599589d28c9fd1d335f32759813dfa91e/importlib_resources-6.4.5-py3-none-any.whl (36 kB)
Collecting zipp>=3.1.0 (from importlib-resources>=3.2.0->matplotlib)
Downloading https://mirrors.aliyun.com/pypi/packages/62/8b/5ba542fa83c90e09eac972fc9baca7a88e7e7ca4b221a89251954019308b/zipp-3.20.2-py3-none-any.whl (9.2 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: zipp, pyparsing, packaging, kiwisolver, importlib-resources, matplotlib
Successfully installed importlib-resources-6.4.5 kiwisolver-1.4.7 matplotlib-3.7.5 packaging-25.0 pyparsing-3.1.4 zipp-3.20.2
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
Collecting dashscope1.19.0 (from -r requirements.txt (line 25))
Downloading https://mirrors.aliyun.com/pypi/packages/32/7e/1b18322d3981d38d35a35ea3e32d65cb1bc301f2ccf0ae4341b03570bb27/dashscope-1.19.0-py3-none-any.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 675.6 kB/s eta 0:00:00
Requirement already satisfied: fonttools4.51.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 27)) (4.51.0)
Collecting frozenlist1.4.1 (from -r requirements.txt (line 29))
Downloading https://mirrors.aliyun.com/pypi/packages/45/4d/175b16d42daae8013bb1872f6d0870abd87da93e0a36706da4c9ba655d19/frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240 kB)
Collecting getch1.0 (from -r requirements.txt (line 33))
Downloading https://mirrors.aliyun.com/pypi/packages/cc/a4/c696c05e0ff9d05b1886cb0210101083db7d330ff964a6d7cd98ad2b2064/getch-1.0.tar.gz (1.3 kB)
Preparing metadata (setup.py) … done
Collecting idna3.10 (from -r requirements.txt (line 35))
Downloading https://mirrors.aliyun.com/pypi/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl (70 kB)
Collecting kiwisolver1.4.5 (from -r requirements.txt (line 39))
Downloading https://mirrors.aliyun.com/pypi/packages/d2/55/7021ffcc8cb26a520bb051aa0a3d08daf200cde945e5863d5768161e2d3d/kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 680.2 kB/s eta 0:00:00
ERROR: Could not find a version that satisfies the requirement matplotlib3.8.4 (from versions: 0.86, 0.86.1, 0.86.2, 0.91.0, 0.91.1, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0, 1.3.1, 1.4.0, 1.4.1rc1, 1.4.1, 1.4.2, 1.4.3, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 2.0.0b1, 2.0.0b2, 2.0.0b3, 2.0.0b4, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.1.0rc1, 2.1.0, 2.1.1, 2.1.2, 2.2.0rc1, 2.2.0, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 3.0.0rc2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0rc1, 3.1.0rc2, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0rc1, 3.2.0rc3, 3.2.0, 3.2.1, 3.2.2, 3.3.0rc1, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.4.0rc1, 3.4.0rc2, 3.4.0rc3, 3.4.0, 3.4.1, 3.4.2, 3.4.3, 3.5.0b1, 3.5.0rc1, 3.5.0, 3.5.1, 3.5.2, 3.5.3, 3.6.0rc1, 3.6.0rc2, 3.6.0, 3.6.1, 3.6.2, 3.6.3, 3.7.0rc1, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.7.4, 3.7.5)
ERROR: No matching distribution found for matplotlib3.8.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple multidict6.0.5
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting multidict6.0.5
Downloading https://mirrors.aliyun.com/pypi/packages/61/a3/c307d4af64e695d13e8587d3f996a51b134156c0e8e2e26f4135bb2bf517/multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: multidict
Attempting uninstall: multidict
Found existing installation: multidict 6.1.0
Uninstalling multidict-6.1.0:
Successfully uninstalled multidict-6.1.0
Successfully installed multidict-6.0.5
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple numpy1.26.4
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
ERROR: Could not find a version that satisfies the requirement numpy1.26.4 (from versions: 1.3.0, 1.4.1, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.2, 1.7.0, 1.7.1, 1.7.2, 1.8.0, 1.8.1, 1.8.2, 1.9.0, 1.9.1, 1.9.2, 1.9.3, 1.10.0.post2, 1.10.1, 1.10.2, 1.10.4, 1.11.0, 1.11.1, 1.11.2, 1.11.3, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 1.13.3, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.14.4, 1.14.5, 1.14.6, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.15.4, 1.16.0, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5, 1.16.6, 1.17.0, 1.17.1, 1.17.2, 1.17.3, 1.17.4, 1.17.5, 1.18.0, 1.18.1, 1.18.2, 1.18.3, 1.18.4, 1.18.5, 1.19.0, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.19.5, 1.20.0, 1.20.1, 1.20.2, 1.20.3, 1.21.0, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.22.0, 1.22.1, 1.22.2, 1.22.3, 1.22.4, 1.23.0, 1.23.1, 1.23.2, 1.23.3, 1.23.4, 1.23.5, 1.24.0, 1.24.1, 1.24.2, 1.24.3, 1.24.4)
ERROR: No matching distribution found for numpy1.26.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple numpy
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Requirement already satisfied: numpy in /home/lyf/.local/lib/python3.8/site-packages (1.24.4)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install numpy
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: numpy in /home/lyf/.local/lib/python3.8/site-packages (1.24.4)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple numpy=2.3.4
Defaulting to user installation because normal site-packages is not writeable
ERROR: Invalid requirement: ‘numpy=2.3.4’: Expected end or semicolon (after name and no valid version specifier)
numpy=2.3.4
^
Hint: = is not a valid operator. Did you mean == ?
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple numpy
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Requirement already satisfied: numpy in /home/lyf/.local/lib/python3.8/site-packages (1.24.4)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple opencv-python4.9.0.80
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting opencv-python4.9.0.80
Downloading https://mirrors.aliyun.com/pypi/packages/d9/64/7fdfb9386511cd6805451e012c537073a79a958a58795c4e602e538c388c/opencv_python-4.9.0.80-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.2/62.2 MB 340.7 kB/s eta 0:00:00
Requirement already satisfied: numpy>=1.17.0 in /home/lyf/.local/lib/python3.8/site-packages (from opencv-python4.9.0.80) (1.24.4)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: opencv-python
Successfully installed opencv-python-4.9.0.80
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip cache purge && pip install packaging24.0 --upgrade --force-reinstall
Files removed: 52 (77.0 MB)
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement packaging24.0 (from versions: none)
ERROR: No matching distribution found for packaging24.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple packaging24.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting packaging24.0
Downloading https://mirrors.aliyun.com/pypi/packages/49/df/1fceb2f8900f8639e278b056416d49134fb8d84c5942ffaa01ad34782422/packaging-24.0-py3-none-any.whl (53 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: packaging
Attempting uninstall: packaging
Found existing installation: packaging 25.0
Uninstalling packaging-25.0:
Successfully uninstalled packaging-25.0
Successfully installed packaging-24.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple pillow10.3.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting pillow10.3.0
Downloading https://mirrors.aliyun.com/pypi/packages/63/c3/1ed3472168c4f884356cc995b7a82772f19a96accf6fa625bad1ce9c0cdf/pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl (4.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 447.4 kB/s eta 0:00:00
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: pillow
Successfully installed pillow-10.3.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple pyparsing3.1.2
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting pyparsing3.1.2
Downloading https://mirrors.aliyun.com/pypi/packages/9d/ea/6d76df31432a0e6fdf81681a895f009a4bb47b3c39036db3e1b528191d52/pyparsing-3.1.2-py3-none-any.whl (103 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: pyparsing
Attempting uninstall: pyparsing
Found existing installation: pyparsing 3.1.4
Uninstalling pyparsing-3.1.4:
Successfully uninstalled pyparsing-3.1.4
Successfully installed pyparsing-3.1.2
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple python-dateutil2.9.0.post0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting python-dateutil2.9.0.post0
Downloading https://mirrors.aliyun.com/pypi/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil2.9.0.post0) (1.14.0)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: python-dateutil
Successfully installed python-dateutil-2.9.0.post0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple requests2.31.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting requests2.31.0
Downloading https://mirrors.aliyun.com/pypi/packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl (62 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in /home/lyf/.local/lib/python3.8/site-packages (from requests2.31.0) (2.0.4)
Requirement already satisfied: idna<4,>=2.5 in /home/lyf/.local/lib/python3.8/site-packages (from requests2.31.0) (3.11)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests2.31.0) (1.25.8)
Requirement already satisfied: certifi>=2017.4.17 in /home/lyf/.local/lib/python3.8/site-packages (from requests2.31.0) (2023.11.17)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: requests
Successfully installed requests-2.31.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple six1.16.0
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting six1.16.0
Downloading https://mirrors.aliyun.com/pypi/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl (11 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: six
ERROR: pip’s dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
launchpadlib 1.10.13 requires testresources, which is not installed.
Successfully installed six-1.16.0
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple urllib32.2.1
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting urllib32.2.1
Downloading https://mirrors.aliyun.com/pypi/packages/a2/73/a68704750a7679d0b6d3ad7aa8d4da8e14e151ae82e6fee774e6e0d05ec8/urllib3-2.2.1-py3-none-any.whl (121 kB)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: urllib3
Successfully installed urllib3-2.2.1
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple yarl1.9.4
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting yarl1.9.4
Downloading https://mirrors.aliyun.com/pypi/packages/58/c0/8d9a1c02f217f900f248e0ee31377849f4041aff3d36b71b1f30b4a0fa33/yarl-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308 kB)
Requirement already satisfied: idna>=2.0 in /home/lyf/.local/lib/python3.8/site-packages (from yarl1.9.4) (3.11)
Requirement already satisfied: multidict>=4.0 in /home/lyf/.local/lib/python3.8/site-packages (from yarl1.9.4) (6.0.5)
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: yarl
Attempting uninstall: yarl
Found existing installation: yarl 1.15.2
Uninstalling yarl-1.15.2:
Successfully uninstalled yarl-1.15.2
Successfully installed yarl-1.9.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Requirement already satisfied: aiohttp3.9.5 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (3.9.5)
Requirement already satisfied: aiosignal1.3.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (1.3.1)
Requirement already satisfied: async-timeout4.0.3 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (4.0.3)
Requirement already satisfied: attrs23.2.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (23.2.0)
Requirement already satisfied: certifi2023.11.17 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (2023.11.17)
Requirement already satisfied: charset-normalizer2.0.4 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.0.4)
Requirement already satisfied: cycler0.12.1 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (0.12.1)
Collecting dashscope1.19.0 (from -r requirements.txt (line 25))
Downloading https://mirrors.aliyun.com/pypi/packages/32/7e/1b18322d3981d38d35a35ea3e32d65cb1bc301f2ccf0ae4341b03570bb27/dashscope-1.19.0-py3-none-any.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 486.7 kB/s eta 0:00:00
Requirement already satisfied: fonttools4.51.0 in /home/lyf/.local/lib/python3.8/site-packages (from -r requirements.txt (line 27)) (4.51.0)
Collecting frozenlist1.4.1 (from -r requirements.txt (line 29))
Downloading https://mirrors.aliyun.com/pypi/packages/45/4d/175b16d42daae8013bb1872f6d0870abd87da93e0a36706da4c9ba655d19/frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240 kB)
Collecting getch1.0 (from -r requirements.txt (line 33))
Downloading https://mirrors.aliyun.com/pypi/packages/cc/a4/c696c05e0ff9d05b1886cb0210101083db7d330ff964a6d7cd98ad2b2064/getch-1.0.tar.gz (1.3 kB)
Preparing metadata (setup.py) … done
Collecting idna3.10 (from -r requirements.txt (line 35))
Downloading https://mirrors.aliyun.com/pypi/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl (70 kB)
Collecting kiwisolver1.4.5 (from -r requirements.txt (line 39))
Downloading https://mirrors.aliyun.com/pypi/packages/d2/55/7021ffcc8cb26a520bb051aa0a3d08daf200cde945e5863d5768161e2d3d/kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 483.0 kB/s eta 0:00:00
ERROR: Could not find a version that satisfies the requirement matplotlib3.8.4 (from versions: 0.86, 0.86.1, 0.86.2, 0.91.0, 0.91.1, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0, 1.3.1, 1.4.0, 1.4.1rc1, 1.4.1, 1.4.2, 1.4.3, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 2.0.0b1, 2.0.0b2, 2.0.0b3, 2.0.0b4, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.1.0rc1, 2.1.0, 2.1.1, 2.1.2, 2.2.0rc1, 2.2.0, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 3.0.0rc2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0rc1, 3.1.0rc2, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0rc1, 3.2.0rc3, 3.2.0, 3.2.1, 3.2.2, 3.3.0rc1, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.4.0rc1, 3.4.0rc2, 3.4.0rc3, 3.4.0, 3.4.1, 3.4.2, 3.4.3, 3.5.0b1, 3.5.0rc1, 3.5.0, 3.5.1, 3.5.2, 3.5.3, 3.6.0rc1, 3.6.0rc2, 3.6.0, 3.6.1, 3.6.2, 3.6.3, 3.7.0rc1, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.7.4, 3.7.5)
ERROR: No matching distribution found for matplotlib3.8.4
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install pyorbbecsdk
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement pyorbbecsdk (from versions: none)
ERROR: No matching distribution found for pyorbbecsdk
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ git clone https://github.com/orbbec/pyorbbecsdk.git
正克隆到 ‘pyorbbecsdk’…
remote: Enumerating objects: 3729, done.
remote: Counting objects: 100% (1001/1001), done.
remote: Compressing objects: 100% (315/315), done.
^C收对象中: 4% (181/3729), 14.28 MiB | 65.00 KiB/s
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip3 install pyorbbecsdk2
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement pyorbbecsdk2 (from versions: none)
ERROR: No matching distribution found for pyorbbecsdk2
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pyorbbecsdk-2.0.13-cp311-cp311-linux_x86_64.whl
pyorbbecsdk-2.0.13-cp311-cp311-linux_x86_64.whl:未找到命令
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python3 -m pip install pyorbbecsdk-2.0.13-cp311-cp311-linux_x86_64.whl
Defaulting to user installation because normal site-packages is not writeable
WARNING: Requirement ‘pyorbbecsdk-2.0.13-cp311-cp311-linux_x86_64.whl’ looks like a filename, but the file does not exist
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: pyorbbecsdk-2.0.13-cp311-cp311-linux_x86_64.whl is not a supported wheel on this platform.
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ python3 -m pip show pyorbbecsdk #or pyorbbecsdk2
WARNING: Package(s) not found: pyorbbecsdk
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install --user pyorbbecsdk
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement pyorbbecsdk (from versions: none)
ERROR: No matching distribution found for pyorbbecsdk
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ pip install -i https://mirrors.aliyun.com/pypi/simple pyorbbecsdk
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
Collecting pyorbbecsdk
Downloading https://mirrors.aliyun.com/pypi/packages/c7/a3/0a103e59838554da3563b59528bce2eca308dc0ce765c33828d44a44356a/pyorbbecsdk-1.3.2-cp38-cp38-manylinux1_x86_64.whl (68.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 68.2/68.2 MB 515.7 kB/s eta 0:00:00
WARNING: Error parsing dependencies of distro-info: Invalid version: ‘0.23ubuntu1’
WARNING: Error parsing dependencies of python-debian: Invalid version: ‘0.1.36ubuntu1’
Installing collected packages: pyorbbecsdk
Successfully installed pyorbbecsdk-1.3.2
lyf@lyf-virtual-machine:~/LUMI_DEMO-v2$ export LD_LIBRARY_PATH=/path/to/JAKA_SDK_LINUX:LDLIBRARYPATHlyf@lyf−virtual−machine: /LUMIDEMO−v2LD_LIBRARY_PATH lyf@lyf-virtual-machine:~/LUMI_DEMO-v2LDLIBRARYPATHlyf@lyf−virtual−machine: /LUMIDEMO−v2
更多推荐



所有评论(0)