-
-
Save ThGravo/d6a20d59af60d6bf9496317959bd12cd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
## If you're using fish https://stackoverflow.com/questions/42871313/cannot-run-source-activate-with-conda-in-fish-shell | |
## and https://github.com/conda/conda/pull/545 | |
source /opt/anaconda/etc/fish/conf.d/conda.fish | |
## Adding conda's bin directory to PATH isn't recommended as of conda 4.4.0: | |
## https://github.com/conda/conda/blob/master/CHANGELOG.md#440-2017-12-20 | |
##Set path to your conda installed location | |
##export PATH="/opt/anaconda/bin:$PATH" | |
##or permanent setting | |
##echo 'export PATH="/opt/anaconda/bin:$PATH"'>>~/.bashrc | |
##source .bashrc | |
##anaconda-navigator use QT5, Fixed macbook hidpi tiny font issue, refer from https://wiki.archlinux.org/index.php/HiDPI#Qt_5 | |
export QT_AUTO_SCREEN_SCALE_FACTOR=0 | |
export QT_SCALE_FACTOR=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment