Installing anaconda to use with windows

后端 未结 1 1469
星月不相逢
星月不相逢 2021-01-26 08:23

I am lost in the installation process of installing anaconda on windows.

I\'ve installed the windows 32bit package (I\'m running windows 7 x64)

I have anaconda i

相关标签:
1条回答
  • 2021-01-26 09:20

    well you might have two installations of python, one inside the anaconda package, and other which you might have installed earlier. try doing :

    which python
    

    from CygWin console. If it returns:

    /usr/bin
    

    then it is definitely a add-to-path problem. to fix it for CygWin, you have to add the python installation from anaconda to the path.

    try this fromn CygWin:

    PATH=path-where-anaconda-is-installed/anaconda/bin:$PATH
    

    and then doing:

    which python 
    

    should give you:

    /path-to-anaconda/anaconda/bin
    

    and then it will work.

    Cheers

    0 讨论(0)
提交回复
热议问题