Skip to content

Instantly share code, notes, and snippets.

View lseongjoo's full-sized avatar

Lee Seongjoo lseongjoo

  • CodeBasic
  • Seoul, Korea
View GitHub Profile
@lseongjoo
lseongjoo / build_numpy.sh
Created February 13, 2024 14:02
Numpy build
sudo apt-get update
sudo apt-get install cmake ninja-build gfortran
pip install --upgrade pip
pip install cython
pip install numpy==1.23.* --no-binary=:all: --force-reinstall --no-cache -v
pip install typing-extensions pytest hypothesis
python -c "import numpy; numpy.test()"