user_name@server_name:~/bbq_spatial$ pip show conda
Name: conda
Version: 4.3.16
Summary: OS-agnostic, system-level binary package manager.
Home-page: https://github.com/conda/conda
Author: Continuum Analytics, Inc.
Author-email: conda@continuum.io
License: BSD
Location: /home/user_name/.local/lib/python3.9/site-packages
Requires: pycosat, requests, ruamel.yaml
Required-by:
user_name@server_name:~/bbq_spatial$ conda update conda
conda: command not found
user_name@server_name:~/bbq_spatial$为什么我不能运行conda命令,即使它已经安装在机器上?
我如何运行conda命令?
编辑:
将命令-v pip和命令-v conda的输出添加到问题中。-纳斯尔·赖利
user_name@server_name:~$ command -v pip
/usr/local/bin/pip
user_name@server_name:~$ command -v conda
user_name@server_name:~$ command -v conda
user_name@server_name:~$发布于 2022-10-22 19:43:04
您安装的是Python模块,与其他模块一样,您将在conda外壳中导入该模块。
如果您想要作为应用程序使用的conda二进制文件,那么您需要安装install或Miniconda,您可以从以下站点获得它们:
https://www.anaconda.com/products/distribution#Downloads
https://docs.conda.io/en/latest/miniconda.html
有说明在这些网站和谷歌安装任何一个,如果你需要帮助。
https://unix.stackexchange.com/questions/722034
复制相似问题