Created
January 15, 2026 14:00
-
-
Save shreyakqss/62d3188af9b4ddcbcd5ab4d735627327 to your computer and use it in GitHub Desktop.
pyproject toml for RL and deep learning on GCP V100 instance with N-series CPU
This file contains hidden or 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
| [project] | |
| name = "rl-pytorch-env" | |
| version = "0.1.0" | |
| requires-python = ">=3.10,<3.11" | |
| dependencies = [ | |
| # Core ML | |
| "torch", | |
| "torchvision", | |
| "torchaudio", | |
| # SciPy stack | |
| "numpy", | |
| "scipy", | |
| "pandas", | |
| "matplotlib", | |
| "seaborn", | |
| "scikit-learn", | |
| # RL envs | |
| "gymnasium[classic-control,box2d,atari,accept-rom-license]", | |
| # RL algorithms | |
| "stable-baselines3[extra]", | |
| # HF RL tooling | |
| "huggingface-hub", | |
| "huggingface-sb3", | |
| "datasets", | |
| "evaluate", | |
| # Viz / logging | |
| "tensorboard", | |
| "wandb", | |
| "moviepy", | |
| "pygame", | |
| # Jupyter | |
| "jupyterlab", | |
| "ipywidgets", | |
| ] | |
| [tool.uv.pip] | |
| extra-index-url = ["https://download.pytorch.org/whl/cu121"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment