We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6910663 + 37031ba commit c131493Copy full SHA for c131493
requirements-freqai-rl.txt
@@ -5,7 +5,9 @@
5
torch==2.2.2; sys_platform == 'darwin' and platform_machine == 'x86_64'
6
torch==2.5.1; sys_platform != 'darwin' or platform_machine != 'x86_64'
7
gymnasium==0.29.1
8
-stable_baselines3==2.4.1
+# SB3 >=2.5.0 depends on torch 2.3.0 - which implies it dropped support x86 macos
9
+stable_baselines3==2.4.1; sys_platform == 'darwin' and platform_machine == 'x86_64'
10
+stable_baselines3==2.5.0; sys_platform != 'darwin' or platform_machine != 'x86_64'
11
sb3_contrib>=2.2.1
12
# Progress bar for stable-baselines3 and sb3-contrib
13
tqdm==4.67.1
0 commit comments