• conda操作总结,pip操作总结,python包安装


    创建新环境

    conda create --name myenv
    conda create --name myenv python=3.8
    conda create --name myenv python=3.8 numpy pandas
    

    激活环境

    conda activate myenv
    

    更换conda环境名字

    1. 激活当前环境。
    2. 克隆当前环境到一个新的名称。
    3. 删除旧环境(可选)。

    以下是对应的命令:

    conda activate old_env_name
    conda create --name new_env_name --clone old_env_name
    conda remove --name old_env_name --all
    

    conda镜像源配置

    查看现有的源

    conda config --show channels
    

    删除添加源,恢复默认源

    conda config --remove-key channels
    

    添加清华源

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
    
    

    添加阿里源

    conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/
    conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/free/
    

    删除镜像源

    conda config --remove channels https://mirrors.aliyun.com/anaconda/pkgs/main/
    conda config --remove channels https://mirrors.aliyun.com/anaconda/pkgs/free/
    

    设置终端显示包从哪个channel下载,以及下载地址是什么

    conda config --set show_channel_urls yes
    

    pip安装镜像源

    pip install -i https://mirrors.aliyun.com/pypi/simple/ some-package
    
    清华大学开源软件镜像站:https://pypi.tuna.tsinghua.edu.cn/simple
    阿里云开源镜像站:https://mirrors.aliyun.com/pypi/simple/
    豆瓣:https://pypi.douban.com/simple/
    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
    

    window安装

    window更适合用pip

    pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 -i https://pypi.tuna.tsinghua.edu.cn/simple

    pip install transformers=4.24.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

    #中科大源、清华源、豆瓣源、阿里源
    -i https://pypi.mirrors.ustc.edu.cn/simple/
    -i https://pypi.tuna.tsinghua.edu.cn/simple
    -i https//pypi.doubanio.com/simple/
    -i https://mirrors.aliyun.com/pypi/simple/ some-package

  • 相关阅读:
    操作系统——环境变量
    RNN模型与NLP应用(1):数据处理基础
    2. Go中的常用命令
    MYSQL存储引擎基础知识介绍
    全网唯一!Matlab王者荣耀配色包MHonor
    React源码分析7-state计算流程和优先级
    CRGDFPASSC,CAS号:166184-23-2
    kubernetes-Service服务发现
    Java核心——面向对象编程(下)接口
    不可避免的过程:初学者写的愚蠢代码及其启示
  • 原文地址:https://blog.csdn.net/lf_78910jqk/article/details/140859254