-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e56972
commit 36e5be8
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,15 +22,15 @@ conda config --append envs_dirs /home/ec2-user/SageMaker/.conda/envs | |
|
||
3. Create the environment. | ||
```bash | ||
conda create -n gbmosaic -y python=3.10 | ||
conda activate gbmosaic | ||
conda create -n gbmhackathon -y python=3.10 | ||
conda activate gbmhackathon | ||
``` | ||
|
||
4. Install the dependencies. | ||
```bash | ||
cd /home/ec2-user/SageMaker | ||
git clone [email protected]:owkin/gbm_mosaic.git | ||
cd gbm_mosaic | ||
git clone [email protected]:owkin/gbm_hackathon.git | ||
cd gbm_hackathon | ||
make install-poetry | ||
make install-all | ||
pre-commit install | ||
|