forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
condarc
48 lines (37 loc) · 1.25 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
# 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.
channels:
- http://repo.continuum.io/pkgs/free
- http://repo.continuum.io/pkgs/pro
- http://some.custom/channel
- defaults
# 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
# implies always using the --yes option whenever asked to proceed
always_yes: 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
binstar_personal: 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