sponsored by custom coursework writing service at https://essaybrother.com/academic-writing/custom-coursework-writing-service/

分类:Python

pip常用命令汇总

列出已安装的包 pip freeze 或 pip list 在线安装 pip install <包名> 指定版本安装 pip install <包名>==<版本号> 指定安装源安装 pip install <包名> -i <源路径> 安装本地安装包 pip install <目录>/<文件名> 卸载包 pip uninstall <包名> 升级包 pip install -U <包名> 或 pip...

Read More

Anaconda常用命令汇总

检查conda版本 conda –version 升级当前版本的conda conda update conda 创建并激活一个环境 conda create -n your_env_name python=3.7 列举当前所有环境 conda info –envs conda env list 进入某个环境 conda activate your_env_name 复制某个环境 conda create –name...

Read More
Loading