Created
February 22, 2018 19:09
-
-
Save ScottJWalter/223c0c44ff74b96cf9411ae9f1ba1a98 to your computer and use it in GitHub Desktop.
Fixing non-default Anaconda Install for Pycharm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem If you install Anaconda in a non-default location, Pycharm can't find the interpreter (known bug) | |
rem you can get around this by creating a symlink at the default location that points to where the interpreter | |
rem is. | |
rem set ANACONDA_VER to "Anaconda2" or "Anaconda3" (depending on which you installed) | |
set ANACONDA_VER = "Anaconda2" | |
rem set ANACONDA_PATH to the full (no trailing slash) path to where you installed Anaconda | |
set ANACONDA_PATH = "E:\Anaconda2" | |
rem run the following with admin rights: | |
mklink /D %HOMEDRIVE%%HOMEPATH%\%ANACONDA_VER% %ANACONDA_PATH% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference: