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
See the full instructions for [installing from source](https://pandas.pydata.org/docs/dev/development/contributing_environment.html).
145
145
146
+
---
147
+
148
+
### Building from Source on Windows (Development Setup)
149
+
150
+
To build pandas from source on a fresh Windows environment, several build-time dependencies are required. The following steps outline the full process:
151
+
152
+
1.**Install C++ Build Tools:**
153
+
* Download and run the "Build Tools for Visual Studio 2022".
154
+
* In the installer, you must select the **"Desktop development with C++"** workload.
155
+
156
+
2.**Create and Activate a Virtual Environment:**
157
+
```bash
158
+
python -m venv venv
159
+
.\venv\Scripts\activate
160
+
```
161
+
162
+
3. **Install Python Build Dependencies:**
163
+
The build process requires several Python packages that must be installed first.
0 commit comments