#分享
我在考虑要不要把Nodejs、Python、Ruby都用Conda来管理。不过先看看相关资料。
已经用上了,真香。
我这里选择安装miniconda,conda完全安装似乎要3个多G,没有必要。
我使用的是 Winget
安装(不得不说Winget是挺方便的),命令如下:
winget install miniconda3
clean Remove unused packages and caches.
compare Compare packages between conda environments.
config Modify configuration values in .condarc. This is modeled after the git config
command. Writes to the user .condarc file (C:\Users\me\.condarc) by default.
create Create a new conda environment from a list of specified packages.
help Displays a list of available conda commands and their help strings.
info Display information about current conda install.
init Initialize conda for shell interaction. [Experimental]
install Installs a list of packages into a specified conda environment.
list List linked packages in a conda environment.
package Low-level conda package utility. (EXPERIMENTAL)
remove Remove a list of packages from a specified conda environment.
uninstall Alias for conda remove.
run Run an executable in a conda environment. [Experimental]
search Search for packages and display associated information. The input is a MatchSpec,
a query language for conda packages. See examples below.
update Updates conda packages to the latest compatible version.
upgrade Alias for conda update.
env list 查看所有环境
等进度条走完就可以用 conda
关键字使用了。
window下用powershell安装后会出现无法切换conda环境的问题,而且不会报错,但是你无法切换环境。我找了很多资料[1]后发现要使用 init
命令进行初始化,等执行完后。
conda init powershell
使用 create
命令就可以创建虚拟环境了,-n
设置虚拟环境名称。 后面可以指定安装各种环境包,可以同时安装多个环境。
conda create -n vsdev python=3.8.6 nodejs=18.12.1
使用activate
激活虚拟环境
conda activate vsdev
建议统一使用conda来管理包,原因可以参见 pip install 和conda install的区别
conda install nodejs
conda install pymssql
conda remove nodejs
加入评论