Minor fixes to the conda-bootstrap script
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
230 245 raise RuntimeError("The directory %s does not exist" % args.recipe) 231 246 232 247 # use this environment for all conda-related commands 233 args.env = env = copy.copy(os.environ) 248 args.env = copy.copy(os.environ) 234 249 args.env['CONDARC'] = args.condarc 235 250 236 251 deps = parse_dependencies(args) 237 252 status = conda_create(args, deps) 238 print('$ #execute on your shell: source activate %s' % args.name) 253 print('$ #execute on your shell: conda activate %s' % args.name) mentioned in commit f0581dcc
Please register or sign in to reply