You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -123,8 +115,8 @@ environment to avoid dependency conflicts.
123
115
2. Create virtual environment:
124
116
125
117
```bash
126
-
uv venv --python 3.12 --seed maxtext_venv
127
-
source maxtext_venv/bin/activate
118
+
uv venv --python 3.12 --seed <virtual env name>
119
+
source <virtual env name>/bin/activate
128
120
```
129
121
130
122
3. Install dependencies in editable mode. Choose a single installation option
@@ -157,4 +149,6 @@ environment to avoid dependency conflicts.
157
149
uv pip install -e .[runner] --resolution=lowest
158
150
```
159
151
160
-
After installation, you can verify the package is available with `python3 -c "import maxtext"` and run training jobs with `python3 -m maxtext.trainers.pre_train.train ...`.
152
+
After installation, you can verify the package is available with
153
+
`python3 -c "import maxtext"` and run training jobs with
0 commit comments