Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
Signed-off-by: ҉αkα x⠠⠵ <[email protected]>
  • Loading branch information
4k4xs4pH1r3 authored Nov 28, 2024
1 parent d52020a commit cc8f712
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Python/Anaconda/readme.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Pre-Requiste
# Pre-Requisite

![Anaconda](https://www.anaconda.com/wp-content/uploads/2022/12/anaconda_secondary_logo.svg)

[Install Anaconda Distribution](https://www.anaconda.com/download/success)

Get started with the most fundamental DS, AI, and ML packages. Easily manage applications, packages, and environments using Navigator or command line.

# Optimize Your Conda Environment | Using Python 3.13 (in 10 Steps)
# Optimize Your Conda Environment | Using Python 3.13.0 (in 10 Steps)

**Remember to adjust environment names and commands as needed for your specific setup.**

Expand All @@ -25,10 +25,10 @@ Using "classic" may provides a more reliable fallback option.
conda config --show solver; conda config --set solver libmamba; conda update -n base -c conda-forge conda; conda config --add channels conda-forge; conda update --all -n base; conda upgrade --all
```

2. **Create & Update New Environment:** Create a new environment named "x" with Python 3.13, then update it to match your base environment (using an exported environment file if needed).
2. **Create & Update New Environment:** Create a new environment named "x" with Python 3.13.0, then update it to match your base environment (using an exported environment file if needed).

```bash
conda create -n x python=3.13; conda activate x; conda env export > environment.yml; conda env update -n x -f environment.yml
conda create -n x python=3.13.0; conda activate x; conda env export > environment.yml; conda env update -n x -f environment.yml
```

3. **Fully Update All Environments:** Ensure Conda, all packages, and any outdated components are updated in both the "base" and "x" environments.
Expand Down

0 comments on commit cc8f712

Please sign in to comment.