DeepLabCut安装篇(二):所需工具软件安装
文章目录
0x01 安装Deeplabcut
1. pip安装
pip install deeplabcut
#如果之前安装过的话使用下边这个
pip install --ignore-installed deeplabcut
# ----------------
# 安装wxpython-这是一个Python的GUI库
#linux用户 Ubuntu 16.04LTS
pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04/wxPython-4.0.3-cp36-cp36m-linux_x86_64.whl
#Windows用户
pip install -U wxPython
wxPython直接下载速度很慢,注意!教程里边给的是Ubuntu16.04所用的wxPython,其他版本的需要自己去官方网站找,wxPython 官方网站
# Ubuntu 18.04的whl文件下载地址
pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-18.04/wxPython-4.0.3-cp36-cp36m-linux_x86_64.whl
千万不要用比cp36-cp36m
高的版本,会提示不支持这个平台:
wxPython-4.0.3-cp37-cp37m-linux_x86_64.whl is not a supported wheel on this platform.
2. Github 获得源码安装
git clone xxxxx
sudo python setup.py install
0x02 首次启动Deeplabcut
ipython
import deeplabcut
首次启动会自动下载ffmpg
插件,毕竟日后要用视频进行标记,总得解码吧…
错误总结
1.无法import deeplabcut
错误表现为improt deeplabcut
失败,wxPython模块报错,并缺失相关so文件
1)请检查安装的wxpython是否是对应的系统版本
sudo apt-get install libpng-dev
2)下载符合系统版本的wxpython
wxPython 官方下载地址 : https://wxpython.org/pages/downloads/
比如我是Ubuntu18.04LTS,就需要在https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/这里挑选一个whl,注意版本不能太高!
2.我忘了遇到啥错误了→_→
Conda常用命令
conda info --envs #列出系统中现有的环境
conda deactivate #退出当前环境
conda create --name 新克隆的环境名称 --clone 被克隆的环境名称 #克隆现有的环境