python安装模块,python安装依赖,python环境安装。pip安装依赖,安装指定版本的依赖,卸载依赖,查找依赖 电脑版发表于:2025/5/17 10:39 [TOC] ### 方法1:使用pip ``` pip install xmltodict ``` #### 安装指定版本 ``` pip install python-crontab==3.3.0 ``` #### 卸载依赖 ``` pip uninstall python-crontab -y pip uninstall crontab -y ``` #### 查看依赖 ``` pip show python-crontab pip list | findstr crontab ``` ### 方法2:使用conda(如果你使用的是Anaconda或Miniconda) 如果你在使用Anaconda或Miniconda,可以使用conda来安装依赖,比如安装xmltodict: ``` conda install -c conda-forge xmltodict ```