英伟达cuda下载地址
下载对应版本后先解压
精简模式下一步
同意下一步
cudnn下载地址
目录
在这个目录下执行两个命令 都为pass则成功
1 2 3 4 5
| C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7\extras\demo_suite
.\deviceQuery.exe .\bandwidthTest.exe
|
或者用这个命令查看cuda版本
安装好cuda后安装paddledetection
1
| python -m pip install paddlepaddle-gpu==2.4.2.post117 -f https://www.paddlepaddle.org.cn/whl/windows/mkl/avx/stable.html
|
1 2 3 4 5
| python
import paddle.fluid paddle.fluid.install_check.run_check()
|
出现Your Paddle Fluid is installed successfully! Let's start deep Learning with Paddle Fluid now
则表示成功
下载库文件
1
| https://github.com/PaddlePaddle/PaddleDetection
|
安装依赖库
1 2 3 4
| pip install -r requirements.txt
python setup.py install
|
安装Microsoft Visual C++ 14.0 or greater is required.
1
| https://visualstudio.microsoft.com/zh-hans/visual-cpp-build-tools/
|
安装cocoapi
1
| pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
|
管理员权限进入
1
| D:\github\PaddleDetection\cocoapi-master\PythonAPI>
|
执行安装
1
| python setup.py build_ext install
|
安装测试
1
| python ppdet/modeling/tests/test_architectures.py
|