python3.7+windows10+conda install caffe

为了跑通pose estimation :  Realtime Multi-Person Pose Estimation 的demo 

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

需要安装caffe,使用多种办法进行快速安装无效,未尝试本地编译,最终发现下面的方法有效,分享出来:

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
发布了63 篇原创文章 · 获赞 52 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/weixin_41521681/article/details/103438500
今日推荐