如何使用Conda?

环境

创建环境
  • conda create -n spider_env python=3.10.11
    
查看环境
  • conda env list
    
  • conda info -e
    
激活环境
  • conda activate spider_env
    
退出环境
  • conda deactivate
    
删除环境
  • conda env remove -n spider_env
    

导出包

说明:导出当前虚拟环境中所有已安装的包

  • pip freeze > requirements.txt
    
安装包

说明:一次性安装很多包

  • pip install -r requirements.txt
    
修改镜像源

说明:pip修改为国内镜像源

  • pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
    

Linux如何安装Miniconda?

1、 获取安装文件

说明:获取安装shell脚本文件

  • wget https://repo.anaconda.com/miniconda/Miniconda3-py39_24.3.0-0-Linux-x86_64.sh
    
2、执行安装文件

说明:执行shell脚本文件进行安装

  • bash Miniconda3-py39_24.3.0-0-Linux-x86_64.sh
    
  • 记得点yes

3、 刷新配置

说明:重新加载系统配置

  • source ~/.bashrc
    

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部