美文网首页Projects记录
How to solve “conda: command not

How to solve “conda: command not

作者: greatseniorsde | 来源:发表于2018-05-17 06:41 被阅读0次

    学习Django时教程需要安装Anaconda3版本的python, 与之前机器上的python版本不一致,导致装了anaconda之后在terminal查看conda版本时报错:conda: command not found

    export PATH="/home/username/anaconda3/bin:$PATH" to my .bachrc
    (open by typing vim ~/.bashrc)

    Add this to your .zshrc:
    export PATH="/home/username/anaconda3/bin:$PATH"
    (open by typing vim ~/.zshrc)
    Make sure to replace /home/username/anaconda3 with your actual path.

    相关文章

      网友评论

        本文标题:How to solve “conda: command not

        本文链接:https://www.haomeiwen.com/subject/oguvdftx.html