问题是没有配置环境变量 将anaconda3下的bin文件路径添加到环境变量即可: 1.使用vim ~/.bashrc进入配置文件 在最后面添加路径即可,参考链接如下: 解决nvcc --version显示command not found问题截图如下所示:
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. If your shell is Bash or a Bourne variant, enable conda for the current user with $ echo ". /home/barry/anaconda3/etc/profile.d/conda.sh" >> ~/.bashrc or, for all users, enable conda with $...
conda:commandnot found# 表明环境变量里找不到conda这个软件# 出错原因:.bashrc里没有配置conda的PATH或者配置过但是没有source ~/.bashrc# 检验方法:运行echo $PATH,查看是否含有conda安装路径Warning: 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge' already in 'channels' list, moving to...
conda: command not found# 表明环境变量里找不到conda这个软件# 出错原因:.bashrc里没有配置conda的PATH或者配置过但是没有source ~/.bashrc# 检验方法:运行echo $PATH,查看是否含有conda安装路径Warning: 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge' already in 'channels' list, moving ...
Linux上成功安装anaconda后-bash: conda: command not found 如题,出现这个问题可能是环境变量配置有问题。 省流请看这里:执行cat ~/.bashrc命令查看.bashrc文件内容,若文件中没有export PATH="XXX/anaconda3/bin:$PATH"说明是环境变量未配置,可以继续往下看了;若文件中有此路径,请退出本文,自行校对一下路径。
输入conda如果提示option 则安装配置成功,无需操作此步骤;如果显示command not found则还需要配置环境变量。 echo'export PATH="/home/cdy/anaconda3/bin:$PATH"'>> ~/.bashrcsource~/.bashrc 检查一下: conda --version 2.python安装 (1)安装好anconda后,直接输入python,则可以见到anaconda base的python版本号...
conda: command not found# 表明环境变量里找不到conda这个软件# 出错原因:.bashrc里没有配置conda的PATH或者配置过但是没有source ~/.bashrc# 检验方法:运行echo $PATH,查看是否含有conda安装路径Warning: 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge' already in 'channels' list, moving...
以fastchat虚拟环境为例,修改其中bin/pip文件和第三条一样 vi /mnt/home/anaconda3/envs/fastchat/bin/pip # 修改第一行路径为迁移到的路径 #!/home/anaconda3/bin/python 参考: 解决在linux移动anaconda到其他文件夹,conda: command not found的问题...