conda环境迁移,修改conda路径(附带脚本)

方法1

  1. 现将文件夹移动到对应用户的~目录下(或其他目录)

    bash 复制代码
    mv /home/asushiro/miniconda3 /root/miniconda3
  2. 建立软链接
    然后创建软链接,相当于快捷方式

    bash 复制代码
    ln -s /root/miniconda3 /home/aushiro/miniconda3

方法2

将对应miniconda中的文件路径全部改掉

这里使用python脚本实现

主要需要改的地方是/.../miniconda3/bin/*以及/.../miniconda3/etc/profile.d/*中的全部文件

  1. 先修改 ~/.bashrc

    bash 复制代码
    vim ~/.bashrc

    添加上

    bash 复制代码
    # >>> conda initialize >>>
    # !! Contents within this block are managed by 'conda init' !!
    __conda_setup="$('/root/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
    if [ $? -eq 0 ]; then
        eval "$__conda_setup"
    else
        if [ -f "/root/miniconda3/etc/profile.d/conda.sh" ]; then
            . "/root/miniconda3/etc/profile.d/conda.sh"
        else
            export PATH="/root/miniconda3/bin:$PATH"
        fi
    fi
    unset __conda_setup
    # <<< conda initialize <<<
  2. 首先改bin目录里的
    将需要改的文件名输入到target.txt文件夹里

    shell 复制代码
    echo `ls` > ~/target.txt

    然后再~文件夹下创建modify.py
    内容为

    python 复制代码
    import os
    from tqdm import tqdm
    
    with open("./target.txt", 'r') as f:
        line = f.readline()
        file_name_total = list(map(str, line.split()))
        for file_name in tqdm(file_name_total):
            file_path = os.path.join("/root/miniconda3/bin/", file_name)
            try:
                with open(file_path, 'r', encoding="utf-8") as f:
                    content = f.read()
                content = content.replace("/home/asushiro", "/root")
                with open(file_path, 'w', encoding="utf-8") as f:
                    f.write(content)
            except UnicodeDecodeError:
                print("decode error")
                continue
  3. 同理然后进入etc/profile.d文件夹下

    shell 复制代码
    echo `ls` >~/target.txt

    运行modify.py

    python 复制代码
    import os
    from tqdm import tqdm
    
    with open("./target.txt", 'r') as f:
        line = f.readline()
        file_name_total = list(map(str, line.split()))
        for file_name in tqdm(file_name_total):
            file_path = os.path.join("/root/miniconda3/etc/profile.d/", file_name)
            try:
                with open(file_path, 'r', encoding="utf-8") as f:
                    content = f.read()
                content = content.replace("/home/asushiro", "/root")
                with open(file_path, 'w', encoding="utf-8") as f:
                    f.write(content)
            except UnicodeDecodeError:
                print("decode error")
                continue
  4. 最后刷新环境变量即可

    shell 复制代码
    source ~/.bashrc

如遇其他路径问题同理解决,最简单的是link一下,不过有强迫症可以用一下脚本

相关推荐
拉不动的猪5 小时前
回顾计算属性的缓存与监听的触发返回结果
前端·javascript·vue.js
karshey5 小时前
【IOS webview】h5页面播放视频时,IOS系统显示设置的icon
前端·ios
树欲静而风不止慢一点吧5 小时前
小米手环9应用/游戏开发快速入门
前端·javascript·小程序
小七不懂前端5 小时前
我用 NestJS + Vue3 + Prisma + PostgreSQL 打造了一个企业级 sass 多租户平台
前端·vue.js·后端
晚星star5 小时前
2.2 Node的模块实现
前端·node.js
zYear5 小时前
Three.js 入门指南:揭开 3D 网页的魔法面纱
前端
Studying 开龙wu5 小时前
Linux 系统中配置国内源下载时使用pip install 和conda install哪个快?
linux·conda·pip
Crystal3285 小时前
图片懒加载
前端·javascript·代码规范
KevinShi_BJ5 小时前
Conda env & python 的包管理器
conda
Revol_C6 小时前
开箱即用!轻量级轮询方案,支持同步获取轮询结果!
前端·javascript·设计模式