Lines Matching full:conda
10 $ conda activate pytorch-deps
12 Or if you would like to re-use an existing conda environment, you can pass in
16 $ conda activate my-env
21 $ conda activate pytorch-deps
27 $ conda activate my-env
29 Pulling will reinstall the conda dependencies as well as the nightly binaries into
158 root_logger = logging.getLogger("conda-pytorch")
254 @timed("Solving conda environment")
263 """Performs the conda solve and splits the deps from the package."""
278 "conda",
287 "conda",
324 cmd = ["conda", "env", "remove", "--yes", *env_opts]
328 cmd = ["conda", install_command, "--yes", "--no-deps", *env_opts, *deps]
335 pytorch_dir = tempfile.TemporaryDirectory(prefix="conda-pytorch-")
336 cmd = ["conda", "create", "--yes", "--no-deps", f"--prefix={pytorch_dir.name}", url]
528 cmd = ["conda", "env", "list"]
596 "enable this environment:\n $ conda activate %s",