困惑了很久,毕竟不是计算机专业专业出身,才知道安装深度学习算法各个依赖之间是有版本对应关系的。
(本文使我随笔记录,无价值)
比如:
再比如:
由于我第一步安装cuda时就和其他博主不一致,所以其他依赖版本都需要更改
(如果单纯的跑算法,建议还是和博主一样的版本)
直接上安装过程:
C:\Users\Administrator>activate gpupytorch(gpupytorch) C:\Users\Administrator>d:(gpupytorch) D:\>cd D:\PlugWheel(gpupytorch) D:\PlugWheel>pip install torch-2.2.0+cpu-cp38-cp38-win_amd64.whl
Processing d:\plugwheel\torch-2.2.0+cpu-cp38-cp38-win_amd64.whl
Requirement already satisfied: filelock in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (4.10.0)
Requirement already satisfied: sympy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (1.12)
Requirement already satisfied: networkx in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (3.1)
Requirement already satisfied: jinja2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (3.1.3)
Requirement already satisfied: fsspec in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0+cpu) (2024.2.0)
Requirement already satisfied: MarkupSafe>=2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from jinja2->torch==2.2.0+cpu) (2.1.5)
Requirement already satisfied: mpmath>=0.19 in d:\anaconda\envs\gpupytorch\lib\site-packages (from sympy->torch==2.2.0+cpu) (1.3.0)
Installing collected packages: torchAttempting uninstall: torchFound existing installation: torch 2.2.0Uninstalling torch-2.2.0:Successfully uninstalled torch-2.2.0
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.
torchvision 0.17.0+cpu requires pillow!=8.3.*,>=5.3.0, but you have pillow 8.3.2 which is incompatible.
Successfully installed torch-2.2.0+cpu(gpupytorch) D:\PlugWheel>pip install torchvision-0.17.0+cpu-cp38-cp38-win_amd64.whl
Processing d:\plugwheel\torchvision-0.17.0+cpu-cp38-cp38-win_amd64.whl
Requirement already satisfied: numpy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0+cpu) (1.21.2)
Requirement already satisfied: requests in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0+cpu) (2.31.0)
Requirement already satisfied: torch==2.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0+cpu) (2.2.0+cpu)
Collecting pillow!=8.3.*,>=5.3.0 (from torchvision==0.17.0+cpu)Downloading pillow-10.2.0-cp38-cp38-win_amd64.whl.metadata (9.9 kB)
Requirement already satisfied: filelock in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (4.10.0)
Requirement already satisfied: sympy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (1.12)
Requirement already satisfied: networkx in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (3.1)
Requirement already satisfied: jinja2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (3.1.3)
Requirement already satisfied: fsspec in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->torchvision==0.17.0+cpu) (2024.2.0)
Requirement already satisfied: charset-normalizer<4,>=2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0+cpu) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0+cpu) (3.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0+cpu) (2.2.1)
Requirement already satisfied: certifi>=2017.4.17 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0+cpu) (2024.2.2)
Requirement already satisfied: MarkupSafe>=2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from jinja2->torch==2.2.0->torchvision==0.17.0+cpu) (2.1.5)
Requirement already satisfied: mpmath>=0.19 in d:\anaconda\envs\gpupytorch\lib\site-packages (from sympy->torch==2.2.0->torchvision==0.17.0+cpu) (1.3.0)
torchvision is already installed with the same version as the provided wheel. Use --force-reinstall to force an installation of the wheel.
Downloading pillow-10.2.0-cp38-cp38-win_amd64.whl (2.6 MB)---------------------------------------- 2.6/2.6 MB 3.0 MB/s eta 0:00:00
Installing collected packages: pillowAttempting uninstall: pillowFound existing installation: Pillow 8.3.2Uninstalling Pillow-8.3.2:Successfully uninstalled Pillow-8.3.2
Successfully installed pillow-10.2.0(gpupytorch) D:\PlugWheel>pip install -r E:\DeepLearningModel\Model01\requirements.txt
Requirement already satisfied: torch==2.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2.2.0+cpu)
Requirement already satisfied: torchvision==0.17.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (0.17.0+cpu)
Collecting tensorboard (from -r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading tensorboard-2.14.0-py3-none-any.whl.metadata (1.8 kB)
Collecting scipy==1.2.1 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 4))Downloading scipy-1.2.1.tar.gz (23.1 MB)---------------------------------------- 23.1/23.1 MB 59.4 MB/s eta 0:00:00Preparing metadata (setup.py) ... done
Collecting numpy==1.17.0 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 5))Downloading numpy-1.17.0.zip (6.5 MB)---------------------------------------- 6.5/6.5 MB 102.8 MB/s eta 0:00:00Preparing metadata (setup.py) ... done
Collecting matplotlib==3.1.2 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 6))Downloading matplotlib-3.1.2-cp38-cp38-win_amd64.whl.metadata (1.4 kB)
Collecting opencv_python==4.1.2.30 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 7))Downloading opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl.metadata (11 kB)
Collecting tqdm==4.60.0 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 8))Downloading tqdm-4.60.0-py2.py3-none-any.whl.metadata (57 kB)---------------------------------------- 57.5/57.5 kB 3.2 MB/s eta 0:00:00
Requirement already satisfied: Pillow==10.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 9)) (10.2.0)
Requirement already satisfied: h5py==2.10.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 10)) (2.10.0)
Requirement already satisfied: filelock in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (4.10.0)
Requirement already satisfied: sympy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (1.12)
Requirement already satisfied: networkx in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1)
Requirement already satisfied: jinja2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1.3)
Requirement already satisfied: fsspec in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2024.2.0)
Requirement already satisfied: requests in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2.31.0)
Collecting cycler>=0.10 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting kiwisolver>=1.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Downloading kiwisolver-1.4.5-cp38-cp38-win_amd64.whl.metadata (6.5 kB)
Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Downloading pyparsing-3.1.1-py3-none-any.whl.metadata (5.1 kB)
Collecting python-dateutil>=2.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
INFO: pip is looking at multiple versions of opencv-python to determine which version is compatible with other requirements. This could take a while.
Collecting torchvision==0.17.0 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 2))Downloading torchvision-0.17.0-cp38-cp38-win_amd64.whl.metadata (6.6 kB)
ERROR: Cannot install -r E:\DeepLearningModel\Model01\requirements.txt (line 2), -r E:\DeepLearningModel\Model01\requirements.txt (line 6), -r E:\DeepLearningModel\Model01\requirements.txt (line 7) and numpy==1.17.0 because these package versions have conflicting dependencies.The conflict is caused by:The user requested numpy==1.17.0torchvision 0.17.0 depends on numpymatplotlib 3.1.2 depends on numpy>=1.11opencv-python 4.1.2.30 depends on numpy>=1.17.3To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflictERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts(gpupytorch) D:\PlugWheel>pip install -r E:\DeepLearningModel\Model01\requirements.txt
Requirement already satisfied: torch==2.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2.2.0+cpu)
Requirement already satisfied: torchvision==0.17.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (0.17.0+cpu)
Collecting tensorboard (from -r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached tensorboard-2.14.0-py3-none-any.whl.metadata (1.8 kB)
Collecting scipy==1.2.1 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 4))Using cached scipy-1.2.1.tar.gz (23.1 MB)Preparing metadata (setup.py) ... done
Collecting numpy==1.17.3 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 5))Downloading numpy-1.17.3-cp38-cp38-win_amd64.whl.metadata (2.0 kB)
Collecting matplotlib==3.1.2 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached matplotlib-3.1.2-cp38-cp38-win_amd64.whl.metadata (1.4 kB)
Collecting opencv_python==4.1.2.30 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 7))Using cached opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl.metadata (11 kB)
Collecting tqdm==4.60.0 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 8))Using cached tqdm-4.60.0-py2.py3-none-any.whl.metadata (57 kB)
Requirement already satisfied: Pillow==10.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 9)) (10.2.0)
Requirement already satisfied: h5py==2.10.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 10)) (2.10.0)
Requirement already satisfied: filelock in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (4.10.0)
Requirement already satisfied: sympy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (1.12)
Requirement already satisfied: networkx in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1)
Requirement already satisfied: jinja2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1.3)
Requirement already satisfied: fsspec in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2024.2.0)
Requirement already satisfied: requests in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2.31.0)
Collecting cycler>=0.10 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting kiwisolver>=1.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached kiwisolver-1.4.5-cp38-cp38-win_amd64.whl.metadata (6.5 kB)
Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached pyparsing-3.1.1-py3-none-any.whl.metadata (5.1 kB)
Collecting python-dateutil>=2.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
Requirement already satisfied: six in d:\anaconda\envs\gpupytorch\lib\site-packages (from h5py==2.10.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 10)) (1.16.0)
Collecting absl-py>=0.4 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)
Collecting grpcio>=1.48.2 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading grpcio-1.62.0-cp38-cp38-win_amd64.whl.metadata (4.2 kB)
Collecting google-auth<3,>=1.6.3 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading google_auth-2.28.1-py2.py3-none-any.whl.metadata (4.7 kB)
Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB)
Collecting markdown>=2.6.8 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading Markdown-3.5.2-py3-none-any.whl.metadata (7.0 kB)
Collecting protobuf>=3.19.6 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading protobuf-4.25.3-cp38-cp38-win_amd64.whl.metadata (541 bytes)
Requirement already satisfied: setuptools>=41.0.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (68.2.2)
Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB)
Collecting werkzeug>=1.0.1 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading werkzeug-3.0.1-py3-none-any.whl.metadata (4.1 kB)
Requirement already satisfied: wheel>=0.26 in d:\anaconda\envs\gpupytorch\lib\site-packages (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (0.41.2)
Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading cachetools-5.3.3-py3-none-any.whl.metadata (5.3 kB)
Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading pyasn1_modules-0.3.0-py2.py3-none-any.whl.metadata (3.6 kB)
Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading rsa-4.9-py3-none-any.whl.metadata (4.2 kB)
Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading requests_oauthlib-1.3.1-py2.py3-none-any.whl.metadata (10 kB)
Collecting importlib-metadata>=4.4 (from markdown>=2.6.8->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading importlib_metadata-7.0.1-py3-none-any.whl.metadata (4.9 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (3.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2.2.1)
Requirement already satisfied: certifi>=2017.4.17 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2024.2.2)
Requirement already satisfied: MarkupSafe>=2.1.1 in d:\anaconda\envs\gpupytorch\lib\site-packages (from werkzeug>=1.0.1->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (2.1.5)
Requirement already satisfied: mpmath>=0.19 in d:\anaconda\envs\gpupytorch\lib\site-packages (from sympy->torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (1.3.0)
Collecting zipp>=0.5 (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)
Collecting pyasn1<0.6.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading pyasn1-0.5.1-py2.py3-none-any.whl.metadata (8.6 kB)
Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Downloading oauthlib-3.2.2-py3-none-any.whl.metadata (7.5 kB)
Downloading numpy-1.17.3-cp38-cp38-win_amd64.whl (12.7 MB)---------------------------------------- 12.7/12.7 MB 350.1 kB/s eta 0:00:00
Downloading matplotlib-3.1.2-cp38-cp38-win_amd64.whl (9.1 MB)---------------------------------------- 9.1/9.1 MB 293.9 kB/s eta 0:00:00
Downloading opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl (33.0 MB)---------------------------------------- 33.0/33.0 MB 232.3 kB/s eta 0:00:00
Downloading tqdm-4.60.0-py2.py3-none-any.whl (75 kB)---------------------------------------- 75.8/75.8 kB 262.1 kB/s eta 0:00:00
Downloading tensorboard-2.14.0-py3-none-any.whl (5.5 MB)---------------------------------------- 5.5/5.5 MB 218.6 kB/s eta 0:00:00
Downloading absl_py-2.1.0-py3-none-any.whl (133 kB)---------------------------------------- 133.7/133.7 kB 202.7 kB/s eta 0:00:00
Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB)
Downloading google_auth-2.28.1-py2.py3-none-any.whl (186 kB)---------------------------------------- 186.9/186.9 kB 251.3 kB/s eta 0:00:00
Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB)
Downloading grpcio-1.62.0-cp38-cp38-win_amd64.whl (3.8 MB)---------------------------------------- 3.8/3.8 MB 210.1 kB/s eta 0:00:00
Downloading kiwisolver-1.4.5-cp38-cp38-win_amd64.whl (56 kB)---------------------------------------- 56.2/56.2 kB 267.2 kB/s eta 0:00:00
Downloading Markdown-3.5.2-py3-none-any.whl (103 kB)---------------------------------------- 103.9/103.9 kB 221.9 kB/s eta 0:00:00
Downloading protobuf-4.25.3-cp38-cp38-win_amd64.whl (413 kB)---------------------------------------- 413.4/413.4 kB 220.5 kB/s eta 0:00:00
Downloading pyparsing-3.1.1-py3-none-any.whl (103 kB)---------------------------------------- 103.1/103.1 kB 180.0 kB/s eta 0:00:00
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)---------------------------------------- 229.9/229.9 kB 226.7 kB/s eta 0:00:00
Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB)
Downloading werkzeug-3.0.1-py3-none-any.whl (226 kB)---------------------------------------- 226.7/226.7 kB 157.4 kB/s eta 0:00:00
Downloading cachetools-5.3.3-py3-none-any.whl (9.3 kB)
Downloading importlib_metadata-7.0.1-py3-none-any.whl (23 kB)
Downloading pyasn1_modules-0.3.0-py2.py3-none-any.whl (181 kB)---------------------------------------- 181.3/181.3 kB 179.5 kB/s eta 0:00:00
Downloading requests_oauthlib-1.3.1-py2.py3-none-any.whl (23 kB)
Downloading rsa-4.9-py3-none-any.whl (34 kB)
Downloading oauthlib-3.2.2-py3-none-any.whl (151 kB)---------------------------------------- 151.7/151.7 kB 274.1 kB/s eta 0:00:00
Downloading pyasn1-0.5.1-py2.py3-none-any.whl (84 kB)---------------------------------------- 84.9/84.9 kB 217.1 kB/s eta 0:00:00
Downloading zipp-3.17.0-py3-none-any.whl (7.4 kB)
Building wheels for collected packages: scipyBuilding wheel for scipy (setup.py) ... errorerror: subprocess-exited-with-error× python setup.py bdist_wheel did not run successfully.│ exit code: 1╰─> [147 lines of output]C:\Users\Administrator\AppData\Local\Temp\pip-install-hfguerv1\scipy_0ab0dded0800497a8b3ba689237e2075\setup.py:114: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative usesimport impD:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\_distributor_init.py:30: UserWarning: loaded more than 1 DLL from .libs:D:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\.libs\libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dllD:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\.libs\libopenblas64__v0.3.21-gcc_10_3_0.dllwarnings.warn("loaded more than 1 DLL from .libs:"D:\Anaconda\envs\gpupytorch\lib\site-packages\setuptools\__init__.py:80: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.!!********************************************************************************Requirements should be satisfied by a PEP 517 installer.If you are using pip, you can try `pip install --use-pep517`.********************************************************************************!!dist.fetch_build_eggs(dist.setup_requires)Running from scipy source directory.lapack_opt_info:lapack_mkl_info:No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutilscustomize MSVCCompilerlibraries mkl_rt not found in ['D:\\Anaconda\\envs\\gpupytorch\\lib', 'C:\\', 'D:\\Anaconda\\envs\\gpupytorch\\libs', 'D:\\Anaconda\\Library\\lib']NOT AVAILABLEopenblas_lapack_info:libraries openblas not found in ['D:\\Anaconda\\envs\\gpupytorch\\lib', 'C:\\', 'D:\\Anaconda\\envs\\gpupytorch\\libs', 'D:\\Anaconda\\Library\\lib']get_default_fcompiler: matching types: '['gnu', 'intelv', 'absoft', 'compaqv', 'intelev', 'gnu95', 'g95', 'intelvem', 'intelem', 'flang']'customize GnuFCompilerCould not locate executable g77Could not locate executable f77customize IntelVisualFCompilerCould not locate executable ifortCould not locate executable iflcustomize AbsoftFCompilerCould not locate executable f90customize CompaqVisualFCompilerCould not locate executable DFcustomize IntelItaniumVisualFCompilerCould not locate executable eflcustomize Gnu95FCompilerCould not locate executable gfortranCould not locate executable f95customize G95FCompilerCould not locate executable g95customize IntelEM64VisualFCompilercustomize IntelEM64TFCompilerCould not locate executable efortCould not locate executable efccustomize PGroupFlangCompilerCould not locate executable flangdon't know how to compile Fortran code on platform 'nt'NOT AVAILABLEopenblas_clapack_info:libraries openblas,lapack not found in ['D:\\Anaconda\\envs\\gpupytorch\\lib', 'C:\\', 'D:\\Anaconda\\envs\\gpupytorch\\libs', 'D:\\Anaconda\\Library\\lib']NOT AVAILABLEflame_info:libraries flame not found in ['D:\\Anaconda\\envs\\gpupytorch\\lib', 'C:\\', 'D:\\Anaconda\\envs\\gpupytorch\\libs', 'D:\\Anaconda\\Library\\lib']NOT AVAILABLEaccelerate_info:NOT AVAILABLEatlas_3_10_threads_info:Setting PTATLAS=ATLASlibraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries tatlas,tatlas not found in D:\Anaconda\envs\gpupytorch\liblibraries lapack_atlas not found in C:\libraries tatlas,tatlas not found in C:\libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries tatlas,tatlas not found in D:\Anaconda\envs\gpupytorch\libslibraries lapack_atlas not found in D:\Anaconda\Library\liblibraries tatlas,tatlas not found in D:\Anaconda\Library\lib<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>NOT AVAILABLEatlas_3_10_info:libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries satlas,satlas not found in D:\Anaconda\envs\gpupytorch\liblibraries lapack_atlas not found in C:\libraries satlas,satlas not found in C:\libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries satlas,satlas not found in D:\Anaconda\envs\gpupytorch\libslibraries lapack_atlas not found in D:\Anaconda\Library\liblibraries satlas,satlas not found in D:\Anaconda\Library\lib<class 'numpy.distutils.system_info.atlas_3_10_info'>NOT AVAILABLEatlas_threads_info:Setting PTATLAS=ATLASlibraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries ptf77blas,ptcblas,atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries lapack_atlas not found in C:\libraries ptf77blas,ptcblas,atlas not found in C:\libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries ptf77blas,ptcblas,atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries lapack_atlas not found in D:\Anaconda\Library\liblibraries ptf77blas,ptcblas,atlas not found in D:\Anaconda\Library\lib<class 'numpy.distutils.system_info.atlas_threads_info'>NOT AVAILABLEatlas_info:libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries f77blas,cblas,atlas not found in D:\Anaconda\envs\gpupytorch\liblibraries lapack_atlas not found in C:\libraries f77blas,cblas,atlas not found in C:\libraries lapack_atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries f77blas,cblas,atlas not found in D:\Anaconda\envs\gpupytorch\libslibraries lapack_atlas not found in D:\Anaconda\Library\liblibraries f77blas,cblas,atlas not found in D:\Anaconda\Library\lib<class 'numpy.distutils.system_info.atlas_info'>NOT AVAILABLElapack_info:libraries lapack not found in ['D:\\Anaconda\\envs\\gpupytorch\\lib', 'C:\\', 'D:\\Anaconda\\envs\\gpupytorch\\libs', 'D:\\Anaconda\\Library\\lib']NOT AVAILABLED:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\distutils\system_info.py:1858: UserWarning:Lapack (http://www.netlib.org/lapack/) libraries not found.Directories to search for the libraries can be specified in thenumpy/distutils/site.cfg file (section [lapack]) or by settingthe LAPACK environment variable.return getattr(self, '_calc_info_{}'.format(name))()lapack_src_info:NOT AVAILABLED:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\distutils\system_info.py:1858: UserWarning:Lapack (http://www.netlib.org/lapack/) sources not found.Directories to search for the sources can be specified in thenumpy/distutils/site.cfg file (section [lapack_src]) or by settingthe LAPACK_SRC environment variable.return getattr(self, '_calc_info_{}'.format(name))()NOT AVAILABLETraceback (most recent call last):File "<string>", line 2, in <module>File "<pip-setuptools-caller>", line 34, in <module>File "C:\Users\Administrator\AppData\Local\Temp\pip-install-hfguerv1\scipy_0ab0dded0800497a8b3ba689237e2075\setup.py", line 492, in <module>setup_package()File "C:\Users\Administrator\AppData\Local\Temp\pip-install-hfguerv1\scipy_0ab0dded0800497a8b3ba689237e2075\setup.py", line 488, in setup_packagesetup(**metadata)File "D:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\distutils\core.py", line 135, in setupconfig = configuration()File "C:\Users\Administrator\AppData\Local\Temp\pip-install-hfguerv1\scipy_0ab0dded0800497a8b3ba689237e2075\setup.py", line 395, in configurationraise NotFoundError(msg)numpy.distutils.system_info.NotFoundError: No lapack/blas resources found.[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.ERROR: Failed building wheel for scipyRunning setup.py clean for scipyerror: subprocess-exited-with-error× python setup.py clean did not run successfully.│ exit code: 1╰─> [15 lines of output]C:\Users\Administrator\AppData\Local\Temp\pip-install-hfguerv1\scipy_0ab0dded0800497a8b3ba689237e2075\setup.py:114: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative usesimport impD:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\_distributor_init.py:30: UserWarning: loaded more than 1 DLL from .libs:D:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\.libs\libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dllD:\Anaconda\envs\gpupytorch\lib\site-packages\numpy\.libs\libopenblas64__v0.3.21-gcc_10_3_0.dllwarnings.warn("loaded more than 1 DLL from .libs:"`setup.py clean` is not supported, use one of the following instead:- `git clean -xdf` (cleans all files)- `git clean -Xdf` (cleans all versioned files, doesn't touchfiles that aren't checked into the git repo)Add `--force` to your command to use it anyway if you must (unsupported).[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.ERROR: Failed cleaning build dir for scipy
Failed to build scipy
ERROR: Could not build wheels for scipy, which is required to install pyproject.toml-based projects(gpupytorch) D:\PlugWheel>pip install -r E:\DeepLearningModel\Model01\requirements.txt
Requirement already satisfied: torch==2.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2.2.0+cpu)
Requirement already satisfied: torchvision==0.17.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (0.17.0+cpu)
Collecting tensorboard (from -r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached tensorboard-2.14.0-py3-none-any.whl.metadata (1.8 kB)
Collecting scipy==1.6.1 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 4))Downloading scipy-1.6.1-cp38-cp38-win_amd64.whl.metadata (2.0 kB)
Collecting numpy==1.17.3 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 5))Using cached numpy-1.17.3-cp38-cp38-win_amd64.whl.metadata (2.0 kB)
Collecting matplotlib==3.1.2 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached matplotlib-3.1.2-cp38-cp38-win_amd64.whl.metadata (1.4 kB)
Collecting opencv_python==4.1.2.30 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 7))Using cached opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl.metadata (11 kB)
Collecting tqdm==4.60.0 (from -r E:\DeepLearningModel\Model01\requirements.txt (line 8))Using cached tqdm-4.60.0-py2.py3-none-any.whl.metadata (57 kB)
Requirement already satisfied: Pillow==10.2.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 9)) (10.2.0)
Requirement already satisfied: h5py==2.10.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from -r E:\DeepLearningModel\Model01\requirements.txt (line 10)) (2.10.0)
Requirement already satisfied: filelock in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (4.10.0)
Requirement already satisfied: sympy in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (1.12)
Requirement already satisfied: networkx in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1)
Requirement already satisfied: jinja2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (3.1.3)
Requirement already satisfied: fsspec in d:\anaconda\envs\gpupytorch\lib\site-packages (from torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (2024.2.0)
Requirement already satisfied: requests in d:\anaconda\envs\gpupytorch\lib\site-packages (from torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2.31.0)
Collecting cycler>=0.10 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting kiwisolver>=1.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached kiwisolver-1.4.5-cp38-cp38-win_amd64.whl.metadata (6.5 kB)
Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached pyparsing-3.1.1-py3-none-any.whl.metadata (5.1 kB)
Collecting python-dateutil>=2.1 (from matplotlib==3.1.2->-r E:\DeepLearningModel\Model01\requirements.txt (line 6))Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
Requirement already satisfied: six in d:\anaconda\envs\gpupytorch\lib\site-packages (from h5py==2.10.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 10)) (1.16.0)
Collecting absl-py>=0.4 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)
Collecting grpcio>=1.48.2 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached grpcio-1.62.0-cp38-cp38-win_amd64.whl.metadata (4.2 kB)
Collecting google-auth<3,>=1.6.3 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached google_auth-2.28.1-py2.py3-none-any.whl.metadata (4.7 kB)
Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB)
Collecting markdown>=2.6.8 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached Markdown-3.5.2-py3-none-any.whl.metadata (7.0 kB)
Collecting protobuf>=3.19.6 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached protobuf-4.25.3-cp38-cp38-win_amd64.whl.metadata (541 bytes)
Requirement already satisfied: setuptools>=41.0.0 in d:\anaconda\envs\gpupytorch\lib\site-packages (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (68.2.2)
Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB)
Collecting werkzeug>=1.0.1 (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached werkzeug-3.0.1-py3-none-any.whl.metadata (4.1 kB)
Requirement already satisfied: wheel>=0.26 in d:\anaconda\envs\gpupytorch\lib\site-packages (from tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (0.41.2)
Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached cachetools-5.3.3-py3-none-any.whl.metadata (5.3 kB)
Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached pyasn1_modules-0.3.0-py2.py3-none-any.whl.metadata (3.6 kB)
Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached rsa-4.9-py3-none-any.whl.metadata (4.2 kB)
Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached requests_oauthlib-1.3.1-py2.py3-none-any.whl.metadata (10 kB)
Collecting importlib-metadata>=4.4 (from markdown>=2.6.8->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached importlib_metadata-7.0.1-py3-none-any.whl.metadata (4.9 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (3.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2.2.1)
Requirement already satisfied: certifi>=2017.4.17 in d:\anaconda\envs\gpupytorch\lib\site-packages (from requests->torchvision==0.17.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 2)) (2024.2.2)
Requirement already satisfied: MarkupSafe>=2.1.1 in d:\anaconda\envs\gpupytorch\lib\site-packages (from werkzeug>=1.0.1->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3)) (2.1.5)
Requirement already satisfied: mpmath>=0.19 in d:\anaconda\envs\gpupytorch\lib\site-packages (from sympy->torch==2.2.0->-r E:\DeepLearningModel\Model01\requirements.txt (line 1)) (1.3.0)
Collecting zipp>=0.5 (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached zipp-3.17.0-py3-none-any.whl.metadata (3.7 kB)
Collecting pyasn1<0.6.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached pyasn1-0.5.1-py2.py3-none-any.whl.metadata (8.6 kB)
Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard->-r E:\DeepLearningModel\Model01\requirements.txt (line 3))Using cached oauthlib-3.2.2-py3-none-any.whl.metadata (7.5 kB)
Downloading scipy-1.6.1-cp38-cp38-win_amd64.whl (32.7 MB)---------------------------------------- 32.7/32.7 MB 280.8 kB/s eta 0:00:00
Using cached numpy-1.17.3-cp38-cp38-win_amd64.whl (12.7 MB)
Using cached matplotlib-3.1.2-cp38-cp38-win_amd64.whl (9.1 MB)
Using cached opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl (33.0 MB)
Using cached tqdm-4.60.0-py2.py3-none-any.whl (75 kB)
Using cached tensorboard-2.14.0-py3-none-any.whl (5.5 MB)
Using cached absl_py-2.1.0-py3-none-any.whl (133 kB)
Using cached cycler-0.12.1-py3-none-any.whl (8.3 kB)
Using cached google_auth-2.28.1-py2.py3-none-any.whl (186 kB)
Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB)
Using cached grpcio-1.62.0-cp38-cp38-win_amd64.whl (3.8 MB)
Using cached kiwisolver-1.4.5-cp38-cp38-win_amd64.whl (56 kB)
Using cached Markdown-3.5.2-py3-none-any.whl (103 kB)
Using cached protobuf-4.25.3-cp38-cp38-win_amd64.whl (413 kB)
Using cached pyparsing-3.1.1-py3-none-any.whl (103 kB)
Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB)
Using cached werkzeug-3.0.1-py3-none-any.whl (226 kB)
Using cached cachetools-5.3.3-py3-none-any.whl (9.3 kB)
Using cached importlib_metadata-7.0.1-py3-none-any.whl (23 kB)
Using cached pyasn1_modules-0.3.0-py2.py3-none-any.whl (181 kB)
Using cached requests_oauthlib-1.3.1-py2.py3-none-any.whl (23 kB)
Using cached rsa-4.9-py3-none-any.whl (34 kB)
Using cached oauthlib-3.2.2-py3-none-any.whl (151 kB)
Using cached pyasn1-0.5.1-py2.py3-none-any.whl (84 kB)
Using cached zipp-3.17.0-py3-none-any.whl (7.4 kB)
Installing collected packages: zipp, werkzeug, tqdm, tensorboard-data-server, python-dateutil, pyparsing, pyasn1, protobuf, oauthlib, numpy, kiwisolver, grpcio, cycler, cachetools, absl-py, scipy, rsa, requests-oauthlib, pyasn1-modules, opencv_python, matplotlib, importlib-metadata, markdown, google-auth, google-auth-oauthlib, tensorboardAttempting uninstall: tqdmFound existing installation: tqdm 4.62.2Uninstalling tqdm-4.62.2:Successfully uninstalled tqdm-4.62.2Attempting uninstall: numpyFound existing installation: numpy 1.21.2Uninstalling numpy-1.21.2:Successfully uninstalled numpy-1.21.2Attempting uninstall: scipyFound existing installation: scipy 1.7.1Uninstalling scipy-1.7.1:Successfully uninstalled scipy-1.7.1Attempting uninstall: opencv_pythonFound existing installation: opencv-python 4.5.3.56Uninstalling opencv-python-4.5.3.56:Successfully uninstalled opencv-python-4.5.3.56
Successfully installed absl-py-2.1.0 cachetools-5.3.3 cycler-0.12.1 google-auth-2.28.1 google-auth-oauthlib-1.0.0 grpcio-1.62.0 importlib-metadata-7.0.1 kiwisolver-1.4.5 markdown-3.5.2 matplotlib-3.1.2 numpy-1.17.3 oauthlib-3.2.2 opencv_python-4.1.2.30 protobuf-4.25.3 pyasn1-0.5.1 pyasn1-modules-0.3.0 pyparsing-3.1.1 python-dateutil-2.9.0.post0 requests-oauthlib-1.3.1 rsa-4.9 scipy-1.6.1 tensorboard-2.14.0 tensorboard-data-server-0.7.2 tqdm-4.60.0 werkzeug-3.0.1 zipp-3.17.0(gpupytorch) D:\PlugWheel>