From c808d470749453cca933a623a09715afb6e84796 Mon Sep 17 00:00:00 2001
From: giswqs
Date: Sun, 18 Aug 2024 14:29:22 +0000
Subject: [PATCH] deploy: d2e76de96ec9efc3e6b6abb5f162b241a84d21ba
---
_sources/book/about/instructor.ipynb | 2 +-
_sources/book/about/schedule.ipynb | 2 +-
_sources/book/about/syllabus.ipynb | 2 +-
_sources/book/software/miniconda.ipynb | 2 +-
_sources/book/software/overview.ipynb | 32 ++++++++++++++++++++++++--
_sources/book/software/overview.md | 28 ++++++++++++++++++++++
book/software/overview.html | 22 ++++++++++++++++++
searchindex.js | 2 +-
8 files changed, 85 insertions(+), 7 deletions(-)
diff --git a/_sources/book/about/instructor.ipynb b/_sources/book/about/instructor.ipynb
index b8c2b65..edd099f 100644
--- a/_sources/book/about/instructor.ipynb
+++ b/_sources/book/about/instructor.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "1379541c",
+ "id": "4f3275f0",
"metadata": {},
"source": [
"## Instructor\n",
diff --git a/_sources/book/about/schedule.ipynb b/_sources/book/about/schedule.ipynb
index d2bbe49..59e533d 100644
--- a/_sources/book/about/schedule.ipynb
+++ b/_sources/book/about/schedule.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "9b90ebe0",
+ "id": "506fa597",
"metadata": {},
"source": [
"# Schedule\n",
diff --git a/_sources/book/about/syllabus.ipynb b/_sources/book/about/syllabus.ipynb
index 4f2881a..0475939 100644
--- a/_sources/book/about/syllabus.ipynb
+++ b/_sources/book/about/syllabus.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "38d983f6",
+ "id": "e65603ef",
"metadata": {},
"source": [
"# Syllabus\n",
diff --git a/_sources/book/software/miniconda.ipynb b/_sources/book/software/miniconda.ipynb
index 36461ce..d959f5d 100644
--- a/_sources/book/software/miniconda.ipynb
+++ b/_sources/book/software/miniconda.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "bddc042f",
+ "id": "b3223468",
"metadata": {},
"source": [
"# Miniconda\n",
diff --git a/_sources/book/software/overview.ipynb b/_sources/book/software/overview.ipynb
index af0c5f3..95f6ac1 100644
--- a/_sources/book/software/overview.ipynb
+++ b/_sources/book/software/overview.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "05195b3b",
+ "id": "cdf6d80a",
"metadata": {},
"source": [
"# Overview\n",
@@ -19,7 +19,35 @@
"- [Google Earth Engine](https://earthengine.google.com/)\n",
"- [Google Colab](https://research.google.com/colaboratory)\n",
"- [Amazon SageMaker Studio Lab](https://studiolab.sagemaker.aws)\n",
- "- [Microsoft Planetary Computer](https://planetarycomputer.microsoft.com)"
+ "- [Microsoft Planetary Computer](https://planetarycomputer.microsoft.com)\n",
+ "\n",
+ "## Install Python Packages\n",
+ "\n",
+ "There are different ways to install Python packages. The most common methods are using `pip` or `conda`. Here are some examples:\n",
+ "\n",
+ "To install packages using `pip`:\n",
+ "\n",
+ "```bash\n",
+ "pip install leafmap\n",
+ "```\n",
+ "\n",
+ "To install packages using `conda`:\n",
+ "\n",
+ "```bash\n",
+ "conda install leafmap -c conda-forge\n",
+ "```\n",
+ "\n",
+ "To install packages from a GitHub repository:\n",
+ "\n",
+ "```bash\n",
+ "pip install git+https://github.com/opengeos/leafmap.git\n",
+ "```\n",
+ "\n",
+ "To install packages from a `requirements.txt` file:\n",
+ "\n",
+ "```bash\n",
+ "pip install -r requirements.txt\n",
+ "```"
]
}
],
diff --git a/_sources/book/software/overview.md b/_sources/book/software/overview.md
index 690bf27..d66b168 100644
--- a/_sources/book/software/overview.md
+++ b/_sources/book/software/overview.md
@@ -26,3 +26,31 @@ kernelspec:
- [Google Colab](https://research.google.com/colaboratory)
- [Amazon SageMaker Studio Lab](https://studiolab.sagemaker.aws)
- [Microsoft Planetary Computer](https://planetarycomputer.microsoft.com)
+
+## Install Python Packages
+
+There are different ways to install Python packages. The most common methods are using `pip` or `conda`. Here are some examples:
+
+To install packages using `pip`:
+
+```bash
+pip install leafmap
+```
+
+To install packages using `conda`:
+
+```bash
+conda install leafmap -c conda-forge
+```
+
+To install packages from a GitHub repository:
+
+```bash
+pip install git+https://github.com/opengeos/leafmap.git
+```
+
+To install packages from a `requirements.txt` file:
+
+```bash
+pip install -r requirements.txt
+```
diff --git a/book/software/overview.html b/book/software/overview.html
index 03c5a06..e069fcf 100644
--- a/book/software/overview.html
+++ b/book/software/overview.html
@@ -493,6 +493,7 @@ Contents
@@ -524,6 +525,26 @@ Cloud Computing Platforms
+
+Install Python Packages
+There are different ways to install Python packages. The most common methods are using pip
or conda
. Here are some examples:
+To install packages using pip
:
+
+To install packages using conda
:
+conda install leafmap -c conda-forge
+
+
+To install packages from a GitHub repository:
+pip install git+https://github.com/opengeos/leafmap.git
+
+
+To install packages from a requirements.txt
file:
+pip install -r requirements.txt
+
+
+