python3.7 + Windows 10 + conda install coffee

In order to run through the pose estimation: Realtime Multi-Person Pose Estimation of demo 

https://github.com/ZheC/Realtime_Multi-Person_Pose_Estimation.git

We need to install caffe, using a variety of ways for quick installation invalid, did not try to native compilation, eventually found the following method effectively, sharing out:

https://stackoverflow.com/questions/42096015/how-to-add-caffe-to-anaconda-on-windows

{conda create -n caffe python=x.x}    
{conda activate caffe}     
{conda config --add channels anaconda}     
{conda install caffe -c willyd} 

REM Install caffe with cuda support or install caffe-cpu if you do not want CUDA support

conda create -n caffe python=3.7
conda activate caffe
conda config --add channels anaconda
conda install caffe -c willyd

 

Published 63 original articles · won praise 52 · views 40000 +

Guess you like

Origin blog.csdn.net/weixin_41521681/article/details/103438500