Closed
Description
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
main
here
Location of the documentation
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:
- Add a comment
# The number after -j is the number of compiling jobs run in parallel. Change it according to your machine's hardware spec
. - Change the command to
python setup.py build_ext -j 2
. - Setting a minimum specification for codespace machines