我最近在我的Ubuntu机器上安装了anaconda。由于错误,我将anaconda文件夹从我的主目录转移到另一个文件夹内。现在我尝试在终端中使用anaconda命令时显示错误 - '命令未找到”。我再次将我的anaconda文件夹移动到它的默认主目录,现在它工作正常。任何人都可以解释这一切吗?
它是否与某些路径依赖或某事有关。同时,如果我想使用anaconda,同时将其保存在其他文件夹中,我应该做哪些更改以及在哪里?
非常感谢您的时间和帮助!!!
答案 0 :(得分:0)
是的,您的anaconda系统PATH是根据您的主目录创建的。
您可以打开bashrc文件并将anaconda路径更改为所需的anaconda安装位置
export PATH=/home/{username}/anaconda3/bin:$PATH
检查行
def double_loop(words):
all_words = words.split()
indices = [n for n,x in enumerate(allwords) if x in list1]
if len(indices) != 0:
for pos in indices[:-1]:
if all_words[pos+1] in list2:
return True
#the purpose here is not to continue looking #through the whole list of indices, but end as soon as list2 contains an item 1 position after.
break
else:
return False
将/ home / {username} / anaconda3 / bin替换为您的anaconda安装目录bin
希望这会有所帮助:)