-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
7 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
Submodule extractors
updated
from ef0d81 to adfc11
Submodule my-gym
updated
from 13f12b to a2037e
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
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 |
---|---|---|
@@ -1,10 +1,21 @@ | ||
#!/bin/bash -e | ||
source ~/anaconda3/etc/profile.d/conda.sh | ||
MY_CONDA_ENV=pytorch | ||
# PYTHON_ENV=3 | ||
PYTHON_ENV=3.11 | ||
# conda create -c conda-forge -y -n $MY_CONDA_ENV python=$PYTHON_ENV | ||
PYTHON_ENV=3.12 | ||
if [[ $(conda env list | grep $MY_CONDA_ENV"\s") ]]; then | ||
echo CONDA ENV $MY_CONDA_ENV exists | ||
else | ||
echo CONDA ENV $MY_CONDA_ENV does not exist | ||
# conda create -c conda-forge -y -n $MY_CONDA_ENV python=$MY_CONDA_ENV | ||
conda create -y -n $MY_CONDA_ENV python=$PYTHON_ENV | ||
conda init | ||
conda activate $MY_CONDA_ENV | ||
conda install -y pip | ||
fi | ||
conda init | ||
conda activate $MY_CONDA_ENV | ||
conda info | ||
pip install -U pip | ||
|
||
pip install -r ./requirements_pytorch.txt | ||
./local_setup.sh |
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
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