Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

conda create new env from yml file

# create env from .yml
conda env create --name environment_name --file environment.yml
Comment

conda save environment to yaml

# save conda env to .yml 
conda env export > environment.yml
Comment

conda save environment as yml

# Basic syntax:
conda activate environment_to_export # Activate environment, can be base
conda env export > environment.yml # Export the environment to .yml
Comment

conda write environment.yml

conda env export > environment_droplet.yml
Comment

create conda environment from yaml file

conda env create -f environment.yaml
Comment

PREVIOUS NEXT
Code Example
Shell :: git upload folder 
Shell :: how to update git 
Shell :: osx kill process on port 
Shell :: arch linux change timezone 
Shell :: remove folder from repo but keep locally 
Shell :: how to upgrade terraform v0.13 on mac 
Shell :: how to get the number of lines in a file 
Shell :: can I change a forked repo name 
Shell :: git get project name 
Shell :: git stash drop 
Shell :: composer ins 
Shell :: how to get file manager in vestacp 
Shell :: my shell bash scripting practice 
Shell :: requirements.txt conda 
Shell :: Can I deploy a branch in netlify 
Shell :: nano for windows 
Shell :: flush dns 
Shell :: linux test examples 
Shell :: linux delete files older than specific date 
Shell :: how to remove all files from staging area git 
Shell :: information about files linux 
Shell :: ubuntu install terraform 
Shell :: how to install packages from jupyter notebook 
Shell :: ssh copy 
Shell :: git ignore except 
Shell :: how to run spigot server using bat 
Shell :: grep recursive file extension 
Shell :: refresh gnome shell 
Shell :: homebrew not in path on ubuntu 
Shell :: break line echo 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =