Anaconda Python: where are the virtual environments stored?

后端 未结 9 1326
南方客
南方客 2020-12-01 02:54

I am new to Anaconda Python and I am setting up a project in Sublime Text 3. I have installed Anaconda and created a virtual environment using:

conda create          


        
9条回答
  •  旧时难觅i
    2020-12-01 03:20

    On Windows 10 x64 and Anaconda3, the python interpreter for a newly created environment "my_env" would appear here:

    C:\ProgramData\Anaconda3\envs\my_env\python.exe
    

    Or here:

    C:\Users\[username]\AppData\Local\conda\conda\envs\my_env
    

    Check both places.


    Update 2020-07-17

    • If Anaconda is installed as Administrator, then the default is one location.
    • If Anaconda is not installed as Administrator, then it appears in a different location.

提交回复
热议问题