分类: Python

3 篇文章

vscode python环境配置
macOS 我的配置 ❯ uname -a Darwin 42-MacBook.local 22.2.0 Darwin Kernel Version 22.2.0: Fri Nov 11 02:04:44 PST 2022; root:xnu-8792.61.2~4/RELEASE_ARM64_T8103 arm64 ❯ conda -V conda 22.9.0 ❯ git -v git version 2.37.1 (Apple Git-137.1) miniforge3安装 curl -L…
conda常用指令
检查conda版本 conda -V 退出当前虚拟环境 conda deactivate 创建新虚拟环境 conda create -n your_env_name python=x.x 更新conda conda update conda 安装包 pip install xxx=x.x.x #没有cache的会保存一份到cache,会使用本地的cache pip install xxx=x.x.x --no-cache-dir #不使用本地的cache