Conda 环境迁移

  1. Pack the environment both contain pip and conda into a tar.gz
conda pack -n CTR -o CTR.tar.gz --ignore-editable-packages

2.unzip the file and activate the environment

# Unpack environment into directory `my_env`
mkdir -p my_env
tar -xzf my_env.tar.gz -C my_env

# Use Python without activating or fixing the prefixes. Most Python
# libraries will work fine, but things that require prefix cleanups
# will fail.
./my_env/bin/python

# Activate the environment. This adds `my_env/bin` to your path
source my_env/bin/activate

# Run Python from in the environment
(my_env) $ python

# Cleanup prefixes from in the active environment.
# Note that this command can also be run without activating the environment
# as long as some version of Python is already installed on the machine.
(my_env) $ conda-unpack
posted @ 2022-03-18 16:08  Yan_Hao  阅读(203)  评论(0编辑  收藏  举报