12 2021 档案

该文被密码保护。
posted @ 2021-12-29 16:20 叕叒双又 阅读(0) 评论(0) 推荐(0) 编辑
摘要:How a Kalman filter works, in pictures | Bzarg How a Kalman filter works, in pictures I have to tell you about the Kalman filter, because what it does 阅读全文
posted @ 2021-12-29 15:19 叕叒双又 阅读(401) 评论(0) 推荐(0) 编辑
摘要:1、升级jupyter pip install -U jupyter 2、升级notebook pip install -U notebook --upgrade 3、查看 pip --version pip 21.3.1 from /home/nication/.local/lib/python3 阅读全文
posted @ 2021-12-28 15:40 叕叒双又 阅读(1453) 评论(0) 推荐(0) 编辑
摘要:最近在实用jupyter,没有自动补全,让 jupyter notebook 实现自动代码补全, 1、首先安装 nbextensions pip install jupyter_contrib_nbextensions //安装插件 jupyter contrib nbextension insta 阅读全文
posted @ 2021-12-13 22:18 叕叒双又 阅读(2165) 评论(0) 推荐(0) 编辑
摘要:1、正激活:source ~/anaconda3/bin/activate //激活anaconda: 2、升级conda:conda update conda //升级Anaconda前必须先升级conda) 3、升级anaconda:conda update anaconda 4、升级指定软件, 阅读全文
posted @ 2021-12-12 11:17 叕叒双又 阅读(1329) 评论(0) 推荐(0) 编辑
摘要:在练习一个python中的例程时: 1、执行命令 from . import tools, utilities, simulation, logging_manager #非常简单的一个导入包的操作,linux下.就是当前目录,也没有问题,万万没有想到 1 Traceback (most recen 阅读全文
posted @ 2021-12-12 10:41 叕叒双又 阅读(320) 评论(0) 推荐(0) 编辑
摘要:原文链接:http://www.linuxeden.com/a/96029 终端常常让新用户感到害怕。然而,一旦你了解了它,你就会逐渐开始喜欢上它。好吧,这事往往发生在大多数 Linux 用户身上。 即使你使用 Ubuntu 作为桌面系统,你可能有时也要进入终端。新用户往往对很多事情毫无头绪,在这种 阅读全文
posted @ 2021-12-11 09:54 叕叒双又 阅读(382) 评论(0) 推荐(0) 编辑
摘要:vnc需要图形界面,还需要用到win10下的软件VNC viewer,需要多几步 0、安装VNC viewer,非常简单不多说了 1、安装win10下linux子系统的图形界面,主要参考Win10子系统Ubuntu安装及图形桌面配置 - 知乎 (zhihu.com),这里也可以看看:Ubuntu 2 阅读全文
posted @ 2021-12-10 21:48 叕叒双又 阅读(577) 评论(0) 推荐(0) 编辑
摘要:0、准备工作,创建一个新的账号,此处为nication telnet 1、安装软件:sudo apt install telnet telnetd openbsd-inetd 2、修改配置文件 无需修改配置文件 3、启动服务: sudo service openbsd-inetd restart 4 阅读全文
posted @ 2021-12-10 21:33 叕叒双又 阅读(619) 评论(0) 推荐(0) 编辑
摘要:1、sudo useradd -r -m -s /bin/bash userName -r:建立系统账号;-m:自动建立用户的登入目录;-s:指定用户的默认使用shell 2、sudo passwd userName //根据提示输入新用户的密码即可 3、ls /home 出现新用户的目录说明创建成 阅读全文
posted @ 2021-12-10 21:11 叕叒双又 阅读(3186) 评论(0) 推荐(0) 编辑
摘要:sudo pacman -S cuda 正在解析依赖关系... 正在查找软件包冲突... 警告:检测到循环依赖: 警告:eglexternalplatform 将在它 nvidia-utils 的依赖关系之前被安装 软件包 (6) egl-wayland-2:1.1.9+r3+g582b2d3-1 阅读全文
posted @ 2021-12-05 22:21 叕叒双又 阅读(153) 评论(0) 推荐(0) 编辑
摘要:如图所示 阅读全文
posted @ 2021-12-05 09:56 叕叒双又 阅读(66) 评论(0) 推荐(0) 编辑
摘要:最近在看《用python动手学及其学习》,书中源码的测试环境如下: OS:Windows10 Manjaro:20211205 pacman -Syyu Python:3.7.3 3.9.7 Anaconda:4.6.11 Anaconda3 2021.11 Jupyter Notebook:5.7 阅读全文
posted @ 2021-12-05 09:01 叕叒双又 阅读(614) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2021-12-03 23:07 叕叒双又 阅读(40) 评论(0) 推荐(0) 编辑
摘要:Anaconda3 安装pytorch出错: conda install pytorch  1 Collecting package metadata (current_repodata.json): done Solving environment: failed with initial fr 阅读全文
posted @ 2021-12-02 22:52 叕叒双又 阅读(1726) 评论(0) 推荐(0) 编辑
摘要:安装好的anaconda启动报错如下: anaconda-navigator 2021-12-02 20:57:12,833 - WARNING linux_scaling.get_scaling_factor_using_dbus:31 An exception occurred during f 阅读全文
posted @ 2021-12-02 21:47 叕叒双又 阅读(2460) 评论(0) 推荐(0) 编辑
摘要:最近需要搞下深度学习,发现原来安装的anaconda3无法升级,决定重新安装到home目录 一、下载: wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2021.11-Linux-x86_64.sh 二、修改权 阅读全文
posted @ 2021-12-02 18:49 叕叒双又 阅读(479) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2021-12-01 21:03 叕叒双又 阅读(0) 评论(0) 推荐(0) 编辑
摘要:download 64bit raspberry iso:https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2021-11-08/ sudo sed -i 's#://raspbian.raspberrypi.o 阅读全文
posted @ 2021-12-01 19:07 叕叒双又 阅读(163) 评论(0) 推荐(0) 编辑
摘要:sudo apt-get install libhdf5-dev libhdf5-serial-dev libhdf5-100 sudo apt-get install libqtgui4 libqtwebkit4 libqt4-test sudo apt-get install libatlas- 阅读全文
posted @ 2021-12-01 11:04 叕叒双又 阅读(541) 评论(1) 推荐(0) 编辑