惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
月光博客
月光博客
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
雷峰网
雷峰网
博客园 - 叶小钗
量子位
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🐍 The "Production-Ready" Miniconda Cheatsheet: From Homeb...
Hamdi LAADHA · 2026-05-07 · via DEV Community
Cover image for 🐍 The "Production-Ready" Miniconda Cheatsheet: From Homebrew to JupyterLab

Hamdi LAADHARI

As I started my journey into AI and Data Science, I quickly realized that managing Python environments can be a total headache. Between broken dependencies and 'it works on my machine' errors, I was spending more time troubleshooting my setup than actually writing code.

I wanted a way to streamline my workflow and keep my machine clean, so I moved to a Miniconda + Homebrew setup on my Mac. To save myself (and hopefully you) from digging through endless documentation, I condensed the 'essential' commands into a single, high-density A4 infographic.

This cheatsheet skips the legacy bloat and focuses on a production-first workflow:

  • Clean Installation: Setting up via Homebrew for macOS.

  • Environment Hygiene: Creating, cloning, and exporting environments so your projects stay isolated.

  • Jupyter Integration: Properly registering kernels so your notebooks actually see your installed packages.

  • The Workflow: A step-by-step checklist for starting any new project the right way.

Whether you are a fellow student trying to organize your labs or a developer looking for a 'no-nonsense' reference, I hope this helps you spend less time in the terminal and more time building."

🐍 Miniconda Cheatsheet


📦 Installation (macOS via Homebrew)

# Install Miniconda
brew install miniconda

# Init conda for zsh
conda init zsh

# Reload shell
source ~/.zshrc

# Verify
conda --version

Enter fullscreen mode Exit fullscreen mode


🌍 Environment Management

# List all environments
conda env list

# Create a new environment
conda create --name myenv python=3.11

# Activate an environment
conda activate myenv

# Deactivate current environment
conda deactivate

# Delete an environment
conda env remove --name myenv

# Clone an environment
conda create --name newenv --clone myenv

# Export environment to file (for sharing/backup)
conda env export > environment.yml

# Recreate environment from file
conda env create -f environment.yml

# Show info about current environment
conda info

Enter fullscreen mode Exit fullscreen mode


📚 Package Management

# Install a package
conda install numpy

# Install a specific version
conda install numpy=1.26

# Install multiple packages at once
conda install numpy pandas matplotlib scikit-learn

# Install from conda-forge channel (wider package selection)
conda install -c conda-forge jupyterlab

# Install with pip — ONLY when package is not available on conda or conda-forge
# Always check first: conda search -c conda-forge packagename
pip install somepackage

# Update a package
conda update numpy

# Update all packages in active environment
conda update --all

# Remove a package
conda remove numpy

# List installed packages in active environment
conda list

# Search for a package
conda search numpy

Enter fullscreen mode Exit fullscreen mode


🚀 JupyterLab

# Install JupyterLab
conda install -c conda-forge jupyterlab

# Launch JupyterLab
jupyter-lab

# Launch from a specific folder
jupyter-lab --notebook-dir=~/projects

Enter fullscreen mode Exit fullscreen mode


🔌 Kernel Management

# List available kernels
jupyter kernelspec list

# Register current env as a Jupyter kernel
conda install -c conda-forge ipykernel
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"

# Remove a kernel
jupyter kernelspec remove myenv

Enter fullscreen mode Exit fullscreen mode


🔧 Conda Maintenance

# Update conda itself
conda update conda

# Clean unused packages and cache (frees disk space)
conda clean --all

# Show conda configuration
conda config --show

# Add conda-forge as default channel
conda config --add channels conda-forge
conda config --set channel_priority strict

Enter fullscreen mode Exit fullscreen mode


💡 Typical Project Workflow

# 1. Create and activate a fresh environment
conda create --name myproject python=3.11
conda activate myproject

# 2. Install packages (always prefer conda over pip inside conda envs)
conda install -c conda-forge jupyterlab numpy pandas matplotlib scikit-learn ipykernel

# 3. Register as a Jupyter kernel
python -m ipykernel install --user --name myproject --display-name "Python (myproject)"

# 4. Launch JupyterLab
jupyter-lab

# 5. When done, deactivate
conda deactivate

# 6. Export environment for reproducibility
conda env export > environment.yml

Enter fullscreen mode Exit fullscreen mode


🗂️ Quick Reference

Task Command
Create env conda create --name myenv python=3.11
Activate env conda activate myenv
Deactivate env conda deactivate
Delete env conda env remove --name myenv
Install package conda install numpy
Remove package conda remove numpy
List packages conda list
List envs conda env list
Launch JupyterLab jupyter-lab
Export env conda env export > environment.yml
Update conda conda update conda
Clean cache conda clean --all