DOC: Suggested build_ext
command may fail on low-resource machines
#52529
Labels
build_ext
command may fail on low-resource machines
#52529
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/dev/development/contributing_environment.html#step-3-build-and-install-pandas
Documentation problem
On low resource machines
python setup.py build_ext -j 4
may fail due to concurrent compiling jobs exhausting memory.I had this problem when developing in GitHub Codespace, in which the smallest (and default) machine has only 2 CPU cores and 4GB of memory.
Suggested fix for documentation
Three options:
# The number after -j is the number of compiling jobs run in parallel. Change it according to your machine's hardware spec
.python setup.py build_ext -j 2
.The text was updated successfully, but these errors were encountered: