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.
1 parent 728be93 commit 387628aCopy full SHA for 387628a
doc/source/development/contributing_environment.rst
@@ -176,6 +176,16 @@ Build the Docker image::
176
# Build the image
177
docker build -t pandas-dev .
178
179
+
180
+**Platform Specification**
181
182
+If you encounter compatibility issues during the build process (especially on Apple Silicon Macs), specify the target platform::
183
184
+ # Highlight your platform in the docker build command for better compatibility
185
+ docker build --platform=linux/amd64 -t pandas-dev .
186
187
+The --platform flag makes the build to use the specified architecture (in this case x86_64), which provides better platform compatibility.
188
189
Run Container::
190
191
# Run a container and bind your local repo to the container
0 commit comments