代码拉取完成,页面将自动刷新
# simple makefile to simplify repetitive build env management tasks under posix
PYTHON ?= python
all:
@echo "Please use 'make <target>' where <target> is one of"
@echo " dev build scikit-learn with Meson"
@echo " clean clean scikit-learn Meson build. Very rarely needed,"
@echo " one use case is when switching back to setuptools"
@echo " dev-setuptools build scikit-learn with setuptools (deprecated)"
@echo " clean-setuptools clean scikit-learn setuptools build (deprecated)"
.PHONY: all
dev: dev-meson
dev-meson:
pip install --verbose --no-build-isolation --editable . --check-build-dependencies --config-settings editable-verbose=true
clean: clean-meson
clean-meson:
pip uninstall -y scikit-learn
dev-setuptools:
$(PYTHON) setup.py build_ext -i
clean-setuptools:
$(PYTHON) setup.py clean
rm -rf dist
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。