How to run Conda?

后端 未结 30 2106
予麋鹿
予麋鹿 2020-11-22 08:56

I installed Anaconda and can run Python, so I assume that I installed it correctly. Following this introductory documentation, I am trying to install Python v3.3, so I am co

30条回答
  •  半阙折子戏
    2020-11-22 09:30

    1. Check where you have installed Anaconda. In my case it looks like /home/nour/anaconda3/bin

    1. Open your .bashrc file. For example $ gedit .bashrc

    3. Add this export PATH = /home/nour/anaconda3/bin:$PATH line at the end of the file and save.

    1. Reopen the terminal. Type conda --version

    NOTE: Make sure path in line no. 1 and line no. 3 must be same. In my case /home/nour/anaconda3/bin .

提交回复
热议问题