安装算法依赖时版本报错,依赖之间对应版本

困惑了很久,毕竟不是计算机专业专业出身,才知道安装深度学习算法各个依赖之间是有版本对应关系的。

(本文使我随笔记录,无价值)

比如:

再比如:

由于我第一步安装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>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/722246.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Vue基础入门(2)- Vue的生命周期、Vue的工程化开发和脚手架、Vue项目目录介绍和运行流程

Vue基础入门&#xff08;2&#xff09;- Vue的生命周期、Vue的工程化开发和脚手架、Vue项目目录介绍和运行流程 文章目录 Vue基础入门&#xff08;2&#xff09;- Vue的生命周期、Vue的工程化开发和脚手架、Vue项目目录介绍和运行流程5 生命周期5.1 Vue生命周期钩子5.2 在creat…

docker pull 拉取失败,设置docker国内镜像

遇到的问题 最近在拉取nginx时&#xff0c;显示如下错误&#xff1a;Error response from daemon: Get “https://registry-1.docker.io/v2/”: net/http: request canceled (Client.Timeout exceeded while awaiting headers)。 这个的问题是拉取镜像超时&#xff0c;通过检索…

c语言经典测试题11

1.题1 #include <stdio.h> int main() { int a[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}, *p a 5, *q NULL; *q *(p5); printf("%d %d\n", *p, *q); return 0; }上述代码的运行结果是什么呢&#xff1f; 我们来分析一下&#xff1a;我们创建了一个数…

第1题:两数之和

题目内容&#xff1a; 给定一个整数数组 nums 和一个整数目标值 target&#xff0c;请你在该数组中找出 和为目标值 target 的那 两个 整数&#xff0c;并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是&#xff0c;数组中同一个元素在答案里不能重复出现。…

数据持久层框架:MyBatis-Plus

数据持久层框架&#xff1a;MyBatis-Plus 前言注解代码生成器CURD接口Service CRUD 接口Mapper CRUD 接口 条件构造器QueryWrapper和UpdateWrapperallEqeq、negt、ge、lt、lebetween、notBetweenlike、notLike、likeLeft、likeRight、notLikeLeft、notLikeRightisNull、isNotNu…

C 判断

判断结构要求程序员指定一个或多个要评估或测试的条件&#xff0c;以及条件为真时要执行的语句&#xff08;必需的&#xff09;和条件为假时要执行的语句&#xff08;可选的&#xff09;。 C 语言把任何非零和非空的值假定为 true&#xff0c;把零或 null 假定为 false。 下面…

UOS 20 安装redis 7.0.11 安装redis 7.0.11时 make命令 报错 /bin/sh: cc: command not found

UOS 20 安装redis 7.0.11 1、下载redis 7.0.112、安装redis 7.0.113、启动停止redis 7.0.114、安装过程问题记录 UOS 20 安装redis 7.0.11 安装redis 7.0.11时 make命令 报错 /bin/sh: cc: command not found、zmalloc.h:50:31: fatal error: jemalloc/jemalloc.h: No such fil…

代码随想录训练营第37天 | LeetCode 738.单调递增的数字、LeetCode 968.监控二叉树、

目录 LeetCode 738.单调递增的数字 文章讲解&#xff1a;代码随想录(programmercarl.com) 视频讲解&#xff1a;贪心算法&#xff0c;思路不难想&#xff0c;但代码不好写&#xff01;LeetCode:738.单调自增的数字_哔哩哔哩_bilibili 思路 ​​​​​​LeetCode 968.监控二…

代码随想录算法训练营第十四天| 144. 二叉树的前序遍历 ,145. 二叉树的后序遍历,94. 二叉树的中序遍历

两种写法&#xff0c;递归和非递归写法 递归&#xff1a; /*** Definition for a binary tree node.* struct TreeNode {* int val;* TreeNode *left;* TreeNode *right;* TreeNode() : val(0), left(nullptr), right(nullptr) {}* TreeNode(int x) : va…

基于协同过滤的旅游推荐系统设计与实现

基于协同过滤的旅游推荐系统设计与实现 在当今旅游业蓬勃发展的背景下&#xff0c;人们对于旅游体验的需求日益增加&#xff0c;如何为用户提供更加个性化、精准的旅游推荐成为了旅游行业的一个重要课题。为解决这一问题&#xff0c;我们设计并实现了一个基于协同过滤的旅游推…

【设计模式 03】抽象工厂模式

一个具体的工厂&#xff0c;可以专门生产单一某一种东西&#xff0c;比如说只生产手机。但是一个品牌的手机有高端机、中端机之分&#xff0c;这些具体的属于某一档次的产品都需要单独建立一个工厂类&#xff0c;但是它们之间又彼此关联&#xff0c;因为都共同属于一个品牌。我…

android开发网络通信,带你彻底搞懂Android启动速度优化

实现方案 直接依赖 这种方式实现简单&#xff0c;但是耦合太严重&#xff0c;不方便维护与开发&#xff0c;当工程逐渐增大模块逐渐增多&#xff0c;依赖关系会非常复杂&#xff0c;不推荐这种方式。 事件或广播通信 EventBus&#xff1a; 我们非常熟悉的事件总线型的通信框…

Rust学习笔记:深度解析内存管理(二)

在这个信息爆炸的时代&#xff0c;学习一门新的编程语言不仅仅是为了找到一份好工作&#xff0c;更是为了打开思维的新窗口。Rust&#xff0c;作为一门注重安全、速度和并发的系统编程语言&#xff0c;正吸引着越来越多的年轻开发者的目光。今天&#xff0c;我们将一起深入探讨…

数据结构与算法:堆排序和TOP-K问题

朋友们大家好&#xff0c;本节内容来到堆的应用&#xff1a;堆排序和topk问题 堆排序 1.堆排序的实现1.1排序 2.TOP-K问题3.向上调整建堆与向下调整建堆3.1对比两种方法的时间复杂度 我们在c语言中已经见到过几种排序&#xff0c;冒泡排序&#xff0c;快速排序&#xff08;qsor…

微信小程序云开发教程——墨刀原型工具入门(安装以及基础使用教程)

引言 作为一个小白&#xff0c;小北要怎么在短时间内快速学会微信小程序原型设计&#xff1f; “时间紧&#xff0c;任务重”&#xff0c;这意味着学习时必须把握微信小程序原型设计中的重点、难点&#xff0c;而非面面俱到。 要在短时间内理解、掌握一个工具的使用&#xf…

稀碎从零算法笔记Day4-LeetCode:交替合并字符串

前言&#xff1a;今天妹有深夜档&#xff0c;因为8点有个飞机 题型&#xff1a;字符串、双指针&#xff08;笔者没用这个思路&#xff09; 链接&#xff1a;1768. 交替合并字符串 - 力扣&#xff08;LeetCode&#xff09; 来源&#xff1a;LeetCode 著作权归作者所有。商业转…

JasperStudio中TextField文本框组件渲染之后,出现行间距不一致的问题

目录 1.1、问题描述 1.2、解决方案 1.1、问题描述 最近在处理线上遇到的一个问题,是有关JasperReports报表相关的问题,问题背景大概是这样的:我们的项目中使用了JasperReports来渲染报表,其中使用到了Text Field文本框组件,但是问题是渲染出来的数据直接会出现一些间距…

洛谷:P3068 [USACO13JAN] Party Invitations S(枚举、前缀和)

这题我们数据范围太大&#xff0c;用二维肯定是不行的&#xff0c;我们可以采用一维线性存储。 如题意&#xff0c;我们可以将每组奶牛编号都存在一维数组里面&#xff0c;只需记录每组的头尾指针就可以了。 如题中样例我们就可以存储成1 3 3 4 1 2 3 4 5 6 7 4 3 2 1 然后第…

[LeetBook]【学习日记】寻找和为指定数字的连续数字

题目 文件组合 待传输文件被切分成多个部分&#xff0c;按照原排列顺序&#xff0c;每部分文件编号均为一个 正整数&#xff08;至少含有两个文件&#xff09;。传输要求为&#xff1a;连续文件编号总和为接收方指定数字 target 的所有文件。请返回所有符合该要求的文件传输组…

【kubernetes】关于k8s集群的存储卷

目录 一、存储卷的分类 二、empty存储卷以及特点 三、hostpath存储卷以及特点 四、nfs存储卷以及特点 五、pvc存储卷 查看pv的定义 查看pvc的定义 实操&#xff1a;静态创建pv的方式 实现pvc存储卷 步骤一&#xff1a;先完成nfs的目录共享&#xff0c;需要准备不同的目…