前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >基础服务系列-Windows10 安装Anaconda&TensorFlow

基础服务系列-Windows10 安装Anaconda&TensorFlow

作者头像
用户2146693
发布2021-12-28 10:38:21
3130
发布2021-12-28 10:38:21
举报
文章被收录于专栏:架构师进阶架构师进阶

The open-source Anaconda Distribution is the easiest way to perform Python/R data science and machine learning on Linux, Windows, and Mac OS X.

下载

官网下载

安装

双击默认安装

验证

conda info

创建Python Env

conda create -n tfenv

activate tfenv

Install Tensorflow

conda install tensorflow

Verifying the Installation

import tensorflow as tf

没有错误,安装正常。

安装数据科学三剑客

  • pandas
  • numpy
  • matplotlib

Install pandas

Pandas是一个开源的,BSD许可的库,为Python编程语言提供高性能,易于使用的数据结构和数据分析工具。

conda install pandas

Verifying the Installation

import pandas as pd

Install numpy

NumPy是Python中的一个运算速度非常快的一个数学库,它非常重视数组。

它允许你在Python中进行向量和矩阵计算,并且由于许多底层函数实际上是用C编写的,因此你可以体验在原生Python中永远无法体验到的速度。

conda install numpy

Verifying the Installation

import numpy as np

Install matplotlib

Matplotlib是一个Python 2D绘图库,可以生成各种硬拷贝格式和跨平台交互式环境的出版物质量数据。

conda install matplotlib

Verifying the Installation

import matplotlib as mlb

Install scikit-learn

scikit-learn 是基于 Python 语言的机器学习工具。

  • 简单高效的数据挖掘和数据分析工具
  • 可供大家在各种环境中重复使用
  • 建立在 NumPy ,SciPy 和 matplotlib 上
  • 开源,可商业使用 - BSD许可证

conda install -c anaconda scikit-learn

Verifying the Installation

import sklearn as sn

参考

Installation with Anaconda

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 下载
  • 安装
  • 验证
  • 创建Python Env
  • Install Tensorflow
  • Verifying the Installation
  • 安装数据科学三剑客
    • Install pandas
      • Verifying the Installation
        • Install numpy
          • Verifying the Installation
            • Install matplotlib
              • Verifying the Installation
                • Install scikit-learn
                  • Verifying the Installation
                  • 参考
                  相关产品与服务
                  TI-ONE 训练平台
                  TI-ONE 训练平台(以下简称TI-ONE)是为 AI 工程师打造的一站式机器学习平台,为用户提供从数据接入、模型训练、模型管理到模型服务的全流程开发支持。TI-ONE 支持多种训练方式和算法框架,满足不同 AI 应用场景的需求。
                  领券
                  问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档