如何在linux下安装qgis

  1. 下载Miniconda(从国内镜像)
    wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
  2. 安装
    bash Miniconda3-latest-Linux-x86_64.sh
    按提示安装,然后运行:
    source ~/.bashrc
  3. 配置conda使用国内源
    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/cloud/conda-forge/
    conda config --set show_channel_urls yes
  4. 创建环境并安装QGIS
    conda create -n qgis python=3.9
    conda activate qgis
    conda install -c conda-forge qgis
  5. 运行
    qgis
相关推荐
唐叔在学习9 分钟前
就算没有服务器,我照样能够同步数据
后端·python·程序员
Sinclair1 小时前
内网服务器离线安装 Nginx+PHP+MySQL 的方法
运维
叶落阁主1 小时前
Tailscale 完全指南:从入门到私有 DERP 部署
运维·安全·远程工作
曲幽2 小时前
FastAPI流式输出实战与避坑指南:让AI像人一样“边想边说”
python·ai·fastapi·web·stream·chat·async·generator·ollama
Flittly2 小时前
【从零手写 AI Agent:learn-claude-code 项目实战笔记】(1)The Agent Loop (智能体循环)
python·agent
vivo互联网技术4 小时前
ICLR2026 | 视频虚化新突破!Any-to-Bokeh 一键生成电影感连贯效果
人工智能·python·深度学习
敏编程5 小时前
一天一个Python库:virtualenv - 隔离你的Python环境,保持项目整洁
python
喝茶与编码7 小时前
Python异步并发控制:asyncio.gather 与 Semaphore 协同设计解析
后端·python
zone77397 小时前
003:RAG 入门-LangChain 读取图片数据
后端·python·面试