上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: public static class 角度换算 { //将ddd.mmss转为弧度 static public double DEG(double ang) { int 符号 = 1; if (ang < 0) { 符号 = -1; ang = -ang; } ang += 1.0E-10;//加 阅读全文
posted @ 2022-03-12 14:04 Coder-Wang 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 一、检查所有环境 命令: conda info -e 或者 conda env list 结果: # conda environments: # base * E:\ProgramData\Anaconda3 tensorflow E:\ProgramData\Anaconda3\envs\tens 阅读全文
posted @ 2022-02-01 12:29 Coder-Wang 阅读(126) 评论(1) 推荐(0) 编辑
摘要: 修改系统变量 设置环境变量的本质就是更改.bashrc文件,.bashrc是隐藏文件,在xftp中是显示不出来的,根据登陆的用户.bashrc文件会在不同的文件夹下,如果登陆的是root用户,.bashrc实在root下的,如果是其他用户,实在home下的 我这边是root用户,在root下 使用命 阅读全文
posted @ 2021-12-11 18:02 Coder-Wang 阅读(467) 评论(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 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 参考文章: https://zhuanlan.zhihu.com/p/434093461 了解JupyterLab之前先说下什么是Jupyter Notebook,简单来说它是一个交互式的开发环境,其提供了在Web上编写运行代码的能力,还可以同时使用md语法编写文档。 安装 # 先换源 pip co 阅读全文
posted @ 2021-12-11 11:06 Coder-Wang 阅读(328) 评论(0) 推荐(0) 编辑
摘要: pip config set global.index-url https://pypi.douban.com/simple/ 阅读全文
posted @ 2021-12-11 08:57 Coder-Wang 阅读(24) 评论(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 阅读(391) 评论(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 阅读(188) 评论(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 阅读(904) 评论(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 阅读(368) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页