12 2021 档案

摘要:修改系统变量 设置环境变量的本质就是更改.bashrc文件,.bashrc是隐藏文件,在xftp中是显示不出来的,根据登陆的用户.bashrc文件会在不同的文件夹下,如果登陆的是root用户,.bashrc实在root下的,如果是其他用户,实在home下的 我这边是root用户,在root下 使用命 阅读全文
posted @ 2021-12-11 18:02 Coder-Wang 阅读(543) 评论(0) 推荐(0)
摘要:一、安装Anaconda 1、选择版本并下载 这里我们需要在官网上查找自己需要的版本,地址链接在下面: https://repo.anaconda.com/archive/ 这里以我自己安装的版本为例: https://repo.anaconda.com/archive/Anaconda3-5.3. 阅读全文
posted @ 2021-12-11 17:59 Coder-Wang 阅读(249) 评论(0) 推荐(0)
摘要:参考文章: https://zhuanlan.zhihu.com/p/434093461 了解JupyterLab之前先说下什么是Jupyter Notebook,简单来说它是一个交互式的开发环境,其提供了在Web上编写运行代码的能力,还可以同时使用md语法编写文档。 安装 # 先换源 pip co 阅读全文
posted @ 2021-12-11 11:06 Coder-Wang 阅读(440) 评论(0) 推荐(0)
摘要:pip config set global.index-url https://pypi.douban.com/simple/ 阅读全文
posted @ 2021-12-11 08:57 Coder-Wang 阅读(27) 评论(0) 推荐(0)
摘要:参考文章: 大致过程 https://blog.csdn.net/haokur/article/details/81460973 更好的开发和部分解释 https://www.jianshu.com/p/2cae952250d1 1、创建一个文件目录,作为脚本源文件 md webflow-cli 2 阅读全文
posted @ 2021-12-10 23:32 Coder-Wang 阅读(419) 评论(0) 推荐(0)
摘要:打开这个虚拟环境 activite coderwang 1.安装jupyter拓展包 pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter nbextensions_c 阅读全文
posted @ 2021-12-10 22:32 Coder-Wang 阅读(277) 评论(0) 推荐(0)
摘要:使用基础: 环境:anaconda IDE:pycharm 使用框架:sanic 官网:https://sanicframework.org/ 1、在anacoda中搭建对应的虚拟环境 创建一个新的虚拟环境:conda create -n webserver python=3.8.5 详情见文章ht 阅读全文
posted @ 2021-12-10 22:19 Coder-Wang 阅读(979) 评论(0) 推荐(0)
摘要:使用时只需要在加上 using ZMatrix; using System; namespace ZMatrix { public class Matrix { private int numColumns = 0; // 矩阵列数 private int numRows = 0; // 矩阵行数 阅读全文
posted @ 2021-12-01 22:02 Coder-Wang 阅读(435) 评论(0) 推荐(0)
摘要:1、获取包 使用nuget搜索ExcelDATaReader和ExcelDataReader.DataSet 都需要进行安装操作 使用命名空间 using System.IO; using ExcelDataReader; using System.Data; 2、使用 using System; 阅读全文
posted @ 2021-12-01 20:44 Coder-Wang 阅读(1705) 评论(0) 推荐(1)