6 Star 27 Fork 13

Gitee 极速下载/scikit-learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/scikit-learn/scikit-learn
克隆/下载
Makefile 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
# 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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/scikit-learn.git
[email protected]:mirrors/scikit-learn.git
mirrors
scikit-learn
scikit-learn
main

搜索帮助