ubuntu下python-skimage install

来源:互联网 发布:虚拟社交网络正方攻辩 编辑:程序博客网 时间:2024/06/06 12:27
ubuntu下python-skimage安装
1 必须的依赖:
 //  python-numpy //  python-scipy //  python-matplotlib  $  sudo apt-get install python-numpy  $  sudo apt-get install python-scipy  $  sudo apt-get install python-matplotlib

2 安装python-skimage
 $  sudo pip install  scikit-image
<<<注意必须加sudo获得权限>>>
1 0