Toc
  1. use conda installed by root
Toc
0 results found
MINGG
conda
2021/06/29

refer to Conda常用命令整理—创建环境—-conda create –name your_env_name python=3.7_如何利用html码转载别人的博客-CSDN博客_conda create

conda info --envs
conda activate {your_env_name}
conda deactivate

conda create --name {your_env_name} [python=3.7]
conda install -n {your_env_name} {package_name}

while read requirement; do conda install --yes $requirement; done < requirements.txt
while read requirement; do conda install --yes $requirement || pip install $requirement; done < requirements.txt




conda remove --name {your_env_name} --all

conda list --revisions
conda install --rev 0

# delete all packager & cache
conda clean -y --all

# 不太适合移动
conda config --add envs_dirs C:\Anaconda3\envs

for Miniconda3, refer to Tensorflow with DirectML on WSL 2 - Win32 apps | Microsoft Docs, Installation — conda 4.10.2.post1+248741a84 documentation.

# or wget https://repo.anaconda.com/archive/Miniconda3-latest-Linux-x86_64.sh
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
conda init

AD49D34880B09A1AB1866543BA26746E

use conda installed by root

https://blog.csdn.net/u010510962/article/details/109508896

https://blog.csdn.net/weixin_39518984/article/details/111766550

anaconda3/bin/conda init bash
source ~/.bashrc
source activate base
conda activate base
打赏
支付宝
微信
本文作者:MINGG
版权声明:本文首发于MINGG的博客,转载请注明出处!