-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvironment.yml
More file actions
35 lines (32 loc) · 1.08 KB
/
Copy pathenvironment.yml
File metadata and controls
35 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
######################### Environment Setup Instructions #########################
#
# This environment.yml file is used to create a Conda environment. It ensures that
# all necessary dependencies are installed in a controlled environment.
#
#
# How to use:
# - To create the environment, run:
# '''bash
# conda env create -f environment.yml
# '''
# - This will set up an environment named 'py312_GA_env' with Python 3.12.5 and
# all required dependencies.
# - After creation, activate the environment using:
# '''bash
# conda activate py312_GA_env
# '''
# - Additionally, for Anaconda users, some standard packages not listed in the
# requirements.txt file will also be installed due to pre-packaged installations
# settings of the user's base environment. Note that this does not apply to
# Miniconda, which installs only the packages explicitly requested.
#
###################################################################################
name: py312_GA_env
channels:
- defaults
- conda-forge
dependencies:
- python=3.12.5
- pip
- pip:
- -r requirements.txt