-
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
5 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
Submodule my-gym
updated
from a2037e to eb3b7a
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
argh | ||
autoflake | ||
autopep8 | ||
black | ||
duckdb | ||
flake8 | ||
ipython | ||
isort | ||
matplotlib | ||
numpy | ||
pandas | ||
pdbpp | ||
pip | ||
pyarrow | ||
pytest | ||
scikit-learn | ||
scipy | ||
tqdm | ||
ujson | ||
tensorflow[and-cuda] |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash -e | ||
source ~/anaconda3/etc/profile.d/conda.sh | ||
MY_CONDA_ENV=tf | ||
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 | ||
sleep 1 | ||
pip install -U pip | ||
|
||
pip install -r ./requirements_tf.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