codecamp

AI人工智能 安装Python

Python 发行版可用于大量平台。只需下载适用于平台的二进制代码并安装 Python。

如果您的平台的二进制代码不可用,则需要使用 C 编译器手动编译源代码。 编译源代码为您选择安装时需要的功能提供了更多的灵活性。

有关 Python 的安装,请参考以下安装教程文章:

Python安装

AI人工智能 Python的重要功能
AI人工智能 机器学习的类型(ML)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

AI人工智能监督学习(回归)

AI人工智能无监督学习:聚类

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }