forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
condarc
65 lines (49 loc) · 1.75 KB
/
condarc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This is a sample .condarc file
# channel locations. These override conda defaults, i.e., conda will
# search *only* the channels listed here, in the order given. Use "defaults" to
# automatically include all default channels. Non-url channels will be
# interpreted as binstar usernames (this can be changed by modifying the
# channel_alias key; see below).
channels:
- binstar_username
- http://some.custom/channel
- defaults
# Alias to use for non-url channels used with the -c flag. Default is https://conda.binstar.org/
channel_alias: https://your.repo/
# Proxy settings: http://[username]:[password]@[server]:[port]
proxy_servers:
http: http://user:[email protected]:8080
https: https://user:[email protected]:8080
# directory in which conda root is located (used by `conda init`)
root_dir: ~/.local/conda_root
# directories in which environments are located
envs_dirs:
- ~/my-envs
- /opt/anaconda/envs
# directories in which package cache can be present
pkgs_dirs:
- ~/my-pkgs
- /opt/anaconda/pkgs
# implies always using the --yes option whenever asked to proceed
always_yes: True
# disallow soft-linking (default is allow_softlinks: True,
# i.e. soft-link when possible)
allow_softlinks: False
# always use soft-links instead of hard-links (default False)
always_softlink: True
# change ps1 when using activate (default True)
changeps1: False
# use pip when installing and listing packages (default True)
use_pip: False
# binstar.org upload (not defined here means ask)
binstar_upload: True
# when creating new environments add these packages by default
create_default_packages:
- python
- pip
# disallowed specification names
disallow:
- anaconda
# enable certain features to be tracked by default
track_features:
- mkl