我只想在终端上打印特定软件包的版本号,并以其名称为前缀。
类似这样,但对于单独的conda软件包:
$ conda --version
conda 4.6.14
有我不知道的内置函数吗?
答案 0 :(得分:2)
conda list
可能是您要找的东西?加上前缀,您就可以grep
了。
conda list | grep ^ala
alabaster 0.7.12 py37_0
conda list | grep ^pytest
pytest 4.0.2 py37_0
pytest-arraydiff 0.3 py37h39e3cac_0
pytest-astropy 0.5.0 py37_0
pytest-doctestplus 0.2.0 py37_0
pytest-openfiles 0.3.1 py37_0
pytest-remotedata 0.3.1 py37_0