@@ -14,18 +14,18 @@ machine there's a good chance this will work.
14
14
15
15
The following Makefile files should not be modified, but can be consulted:
16
16
17
- * [ Makefile] ( Makefile ) : Orchestration of the different files
18
- * [ base.make] ( .make/base.make ) : Shared utilities, project agnostic.
17
+ - [ Makefile] ( Makefile ) : Orchestration of the different files
18
+ - [ base.make] ( .make/base.make ) : Shared utilities, project agnostic.
19
19
20
20
The following Makefile files are project or user specific:
21
21
22
- * [ Makefile.variables] ( Makefile.variables ) : Shared project variables.
23
- * [ Makefile.targets] ( Makefile.targets ) : Shared project targets.
24
- * [ Makefile.private] ( Makefile.private.example ) : User specific variables and targets.
25
- * This file is ignored by git and should never be committed, as it can also contain
26
- secrets.
27
- * You can create your own version locally by copying from
28
- [ Makefile.private.example] ( Makefile.private.example )
22
+ - [ Makefile.variables] ( Makefile.variables ) : Shared project variables.
23
+ - [ Makefile.targets] ( Makefile.targets ) : Shared project targets.
24
+ - [ Makefile.private] ( Makefile.private.example ) : User specific variables and targets.
25
+ - This file is ignored by git and should never be committed, as it can also contain
26
+ secrets.
27
+ - You can create your own version locally by copying from
28
+ [ Makefile.private.example] ( Makefile.private.example )
29
29
30
30
## Basic Information
31
31
@@ -49,8 +49,8 @@ streamlining script use as well as fix path issues related to imports.
49
49
50
50
If on a compute cluster, first load the appropriate python module:
51
51
52
- * [ How to create a virtual environment for the Mila cluster] ( docs/environment_creation_mila.md )
53
- * [ How to create an environment for the DRAC cluster] ( docs/environment_creation_drac.md )
52
+ - [ How to create a virtual environment for the Mila cluster] ( docs/environment_creation_mila.md )
53
+ - [ How to create an environment for the DRAC cluster] ( docs/environment_creation_drac.md )
54
54
55
55
Installing ` pipx ` and ` poetry ` :
56
56
@@ -97,9 +97,9 @@ on [how to use your poetry virtual environment](https://python-poetry.org/docs/b
97
97
98
98
You can:
99
99
100
- * Use the ` poetry run ` command to access your executables
101
- * ex. ` poetry run python your_script.py ` , or ` poetry run pylint src/ `
102
- * Use the ` poetry shell ` command to activate and step in your project environment
100
+ - Use the ` poetry run ` command to access your executables
101
+ - ex. ` poetry run python your_script.py ` , or ` poetry run pylint src/ `
102
+ - Use the ` poetry shell ` command to activate and step in your project environment
103
103
104
104
#### Conda
105
105
@@ -114,7 +114,7 @@ If working on the Mila cluster, first load the appropriate module :
114
114
make conda-create-env
115
115
```
116
116
117
- 2 . Activate ` conda ` environment (substitute with your <CONDA_TOOL> if something else
117
+ 2 . Activate ` conda ` environment (substitute with your \ < CONDA_TOOL> if something else
118
118
than ` conda ` :
119
119
120
120
```
@@ -154,8 +154,8 @@ This also installs and configures the `pre-commit` hook. See ...
154
154
This project assumes environment management will be done with ` conda ` , a classic
155
155
python virtual environment, or directly through ` poetry ` .
156
156
157
- * [ Poetry] ( https://python-poetry.org/docs/basic-usage/ )
158
- * [ Conda] ( https://conda.io/projects/conda/en/latest/user-guide/getting-started.html )
157
+ - [ Poetry] ( https://python-poetry.org/docs/basic-usage/ )
158
+ - [ Conda] ( https://conda.io/projects/conda/en/latest/user-guide/getting-started.html )
159
159
160
160
While it is possible to manage the environment with, for example, pyenv or virtualenv,
161
161
those specific use cases are not supported by the Makefile and require users to set up
@@ -176,10 +176,10 @@ information.
176
176
177
177
Your project will need a virtual environment for your dependencies.
178
178
179
- * [ How to create a virtual environment for the Mila cluster] ( docs/environment_creation_mila.md )
180
- * [ How to create an environment for the DRAC cluster] ( docs/environment_creation_drac.md )
181
- * [ How to create a Conda environment] ( docs/conda_environment_creation.md )
182
- * [ Migrating to DRAC from another environment] ( docs/migrating_to_drac.md )
179
+ - [ How to create a virtual environment for the Mila cluster] ( docs/environment_creation_mila.md )
180
+ - [ How to create an environment for the DRAC cluster] ( docs/environment_creation_drac.md )
181
+ - [ How to create a Conda environment] ( docs/conda_environment_creation.md )
182
+ - [ Migrating to DRAC from another environment] ( docs/migrating_to_drac.md )
183
183
184
184
There are different ways of managing your python version in these environments. On the
185
185
clusters, you have access to different python modules, and through ` conda ` you have access
0 commit comments