This commit is contained in:
2025-09-19 18:56:27 +02:00
2 changed files with 23 additions and 3 deletions
+8 -1
View File
@@ -30,4 +30,11 @@ Format based on [Keep a Changelog](https://keepachangelog.com) and [Semantic Ver
- Include Licence
### Changed
- Update README.md with new description + authors and funding sections
- Update README.md with new description + authors and funding sections
## [1.2.0] - 2025-06-29
### Changed
- Updated `README.md` to use Miniforge and `conda-forge` for environment setup.
- Removed unreliable `setup_env.sh` shell-based installation instructions.
- Added instructions to configure Conda to use only `conda-forge` with strict priority.
- Included a notice to verify base environment origin via `conda info`.
+15 -2
View File
@@ -60,8 +60,11 @@ We recommend using Miniforge to manage your conda environments. Miniforge ensure
1. Make sure you have installed **Miniforge**.
2. Create the Environment from `environment.yml`
After installing Miniforge, open **Miniforge Prompt** or a terminal with access to conda and run:
2. Open **Miniforge Prompt**
> ⚠️ Ensure your Conda base environment is from Miniforge (not Anaconda). Run `conda info` and check for `miniforge` in the base path and `conda-forge` as the default channel.
3. Create the Environment from `environment.yml`. Inside the **Miniforge Prompt** or a terminal with access to conda and run:
```bash
cd path/to/Gitea/dima
conda env create --file environment.yml
@@ -70,6 +73,16 @@ After installing Miniforge, open **Miniforge Prompt** or a terminal with access
```bash
conda activate dima_env
```
4. Remove the `defaults` channel (if present):
```bash
conda config --remove channels defaults
```
5. Add `conda-forge` as the highest-priority channel:
```bash
conda config --add channels conda-forge
conda config --set channel_priority strict
```
### Working with Jupyter Notebooks
We now make the previously installed Python environment `dima_env` selectable as a kernel in Jupyter's interface.