美文网首页
在 WSL2 中使用 micromamba

在 WSL2 中使用 micromamba

作者: 生信石头 | 来源:发表于2023-12-11 22:27 被阅读0次

安装 micromamb

sudo apt-get install bzip2
mkdir mircomamba
wget -O micromamba.tar.bz2 https://micro.mamba.pm/api/micromamba/linux-64/latest
tar -jxvf micromamba.tar.bz2

写入到配置(可选)

./bin/micromamba shell init -s bash -p ~/micromamba
source ~/.bashrc

创建环境,以 SVGAP 软件为环境配置目标

micromamba create -n svgap
micromamba activate svgap

添加一些默认频道

micromamba config append channels conda-forge
micromamba config append channels bioconda

如此就一些顺畅了

相关文章

  • WSL2中使用adb和fastboot

    最近在用WSL2编译aosp和lineageos ,由于WSL2和WSL使用不同的技术,导致WSL2中Ubuntu...

  • Kind 安装单机k8s——windows

    前置条件 已经安装 WSL2 已经安装了Docker Desktop 并使用 WSL2 作为 based engi...

  • WSL2 与WSL1

    使用命令行将 WSL 1 的发行版转化为 WSL2、在 PowerShell 中运行:wsl --set-vers...

  • 为 WSL2 一键设置代理

    在 WSL2 环境中 clone 一个很大的 git 项目,不走代理速度很慢,所以研究了一下怎么让 WSL2 走 ...

  • 手机访问wsl2网站

    查看wsl2的ip 开启服务,如nginx(配置端口为非80端口) 确保 wsl2的ip:nginx配置中的端口 ...

  • 在WSL2上部署标准k8s集群并使用Prometheus监控sp

    在WSL2上部署标准k8s集群并使用Prometheus监控spring cloud服务 2019年Windows...

  • WSL2配置记录

    WSL2安装注意事项 开启CPU虚拟化,并在“启用与关闭windows功能”中开启"虚拟机平台" 启用WSL2提示...

  • 使用wsl2

    在window下用linux再也不需要装虚拟机了。 而且wsl2还是一个完整的内核,官方支持,个人使用感觉还是非常...

  • wsl2使用

    https://blog.csdn.net/qq_32114645/article/details/1245480...

  • Singularity在wsl2中安装

    1.sudo apt-get update 2.sudo apt-get install -y \ build...

网友评论

      本文标题:在 WSL2 中使用 micromamba

      本文链接:https://www.haomeiwen.com/subject/vxdugdtx.html