Horje
create conda environment Code Example
conda create environment
conda create -n myenv python=3.6
list conda environments
conda info --envs

conda env list
anaconda remove environment
conda env remove -n ENV_NAME
conda create environment based on requirements.txt
# using pip
pip install -r requirements.txt

# using Conda
conda create --name <env_name> --file requirements.txt
conda create environment without packages
conda create --name myenv python=3.8 --no-default-packages
create conda environment
conda create -n <my_env> python=3.8
#Remember to install "ipykernel" so you can use jupyter notebook.
conda install ipykernel




Shell

Related
shell script to reindex elasticsearch Code Example shell script to reindex elasticsearch Code Example
create a new branch based on another branch Code Example create a new branch based on another branch Code Example
how to completely uninstall eclipse Code Example how to completely uninstall eclipse Code Example
check storage space of server human readable Code Example check storage space of server human readable Code Example
elementary os vscode Code Example elementary os vscode Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11