安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。

文章目录

  • 一、安装Anaconda
    • 1.在Anaconda Navigator中无法打开jupyter
  • 二、使用jupyter notebook完成编程
    • 1.引入库
    • 2.基础练习
  • 三、总结
  • 四、引用

一、安装Anaconda

在官方网站即可下载,在这里不做赘述,我们来看安装完后可能会遇到的问题

1.在Anaconda Navigator中无法打开jupyter

(1)http://localhost:8888/tree复制到浏览器打开即可,但是存在治标不治本,因此不建议每次都这样。

(2)将浏览器更改为自己想要打开的浏览器,也就是确定默认打开浏览器。
①打开Anaconda,找到CMD.exe,也就是如图第一排第一个的标志
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第1张图片点击Launch(运行),之后输入jupyter notebook --generate-config,在输入y,此时会出现jupyter notebook --generate-config文件的目录

②找到jupyter notebook --generate-config文件,用记事本打开。在记事本中Ctrl+F查找c.NotebookApp.password =
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第2张图片
③确定默认浏览器(最重要的一步)

    在c.NotebookApp.password =这句后面加上如下代码
#设置用chrome浏览器打开 jupyter notebook
import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe'))
 
c.NotebookApp.browser = 'chrome'

如果使用的是其他浏览器如:Firefox,则将代码中的chrome替换掉,代码中的路径是在下图中可以看见:
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第3张图片此处注意需要将单斜杠换成代码中的双斜杠,原因是单斜杠可能会引起代码冲突。

二、使用jupyter notebook完成编程

1.引入库

代码如下(示例):

import numpy as np
import pandas as pd
from pandas import Series,DataFrame
import matplotlib.pyplot as plt
 
%matplotlib inline

2.基础练习

安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第4张图片安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第5张图片

安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第6张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第7张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第8张图片安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第9张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第10张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第11张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第12张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第13张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第14张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第15张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第16张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第17张图片
安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。_第18张图片

三、总结

初步了解了python的格式和函数的用法。

四、引用

https://blog.csdn.net/White_zuorange/article/details/121100172?ops_request_misc=&request_id=&biz_id=102&utm_term=jupyter%20notebook%E8%BF%90%E8%A1%8C%E4%B8%8D%E4%BA%86&utm_medium=distribute.pc_search_result.none-task-blog-2allsobaiduweb~default-1-121100172.142v73insert_down2,201v4add_ask,239v2insert_chatgpt&spm=1018.2226.3001.4187

https://blog.csdn.net/Dorisi_H_n_q/article/details/82259786

你可能感兴趣的:(jupyter,numpy,矩阵)