ICode9

精准搜索请尝试: 精确搜索
  • jupyter安装使用2021-10-27 13:30:43

    jupyter技术原理及安装使用 参考连接: 部署jupyter容器、以及简单使用 - 名字很长容易被惦记 - 博客园 安装步骤 2.1 容器内执行   pip install jupyter 2.2 修改配置文件 #生成jupyter配置文件,这个会生成配置文件.jupyter/jupyter_notebook_config.py jupyter notebook --gen

  • 安装jupyter时报错Failed building wheel for argon2-cffi2021-10-26 14:04:54

    问题 首先部分报错信息如下: build/temp.linux-aarch64-3.8/_ffi.c:50:14: fatal error: pyconfig.h: No such file or directory 50 | # include <pyconfig.h> | ^~~~~~~~~~~~ compilation terminated. error: command 'aarch64-linux-gnu-

  • jupyter notebook配置虚拟环境2021-10-23 14:02:25

    安装ipykernel工具 conda install ipykernel 为虚拟环境下创建kernel conda install -n 虚拟环境名称 ipykernel 环境写入notebook的kernel中 python -m ipykernel install --user --name 虚拟环境名称 --display-name "notebook中显示的名称"

  • jupyter notebook + 服务器中docker 使用配置2021-10-22 13:32:39

    背景: 设备1: 服务器Ubuntu16.04 无图形界面,docker 环境 设备2:笔记本 期望在笔记本访问 服务器docker中的环境(pytorch等) step 1: 确保笔记本能访问到服务器 ssh -p 11122 user_name@ssh-proxy.xxx.com 其中user_name@ssh-proxy.xxx.com 为服务器用户名和地址 11122 为docke

  • jupytera安装中jupyter contrib nbextension install --user报错时的处理办法2021-10-21 16:29:58

    pip3 install prompt-toolkit==1.0.15 -i https://pypi.mirrors.ustc.edu.cn/simple 替换prompt-toolkit==1.0.15 完成后:终端有红丝字体提示: ERROR: jupyter-console 6.1.0 has requirement prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0, but you'll have prompt-toolkit 1.0

  • jupyter快捷键的使用2021-10-19 21:33:38

    两种模式通用快捷键 1Shift+Enter ,执行本单元代码,并跳转到下一单元 Ctrl+Enter ,执行本单元代码,留在本单元 命令模式:按ESC进入 Y ,cell切换到Code模式 代码 M ,cell切换到Markdown模式 做笔记 A ,在当前cell的上面添加cell B ,在当前cell的下面添加cell 双击D :删除当前cell

  • 新一代数据科学ide平台DataSpell提前发行版体验2021-10-19 19:02:09

    1 简介   PyCharm开发公司jetbrains专门面向数据科学的ide项目DataSpell在前不久发布了其EAP版本(早期预览版本),为我们带来了诸多趋于成熟的功能特性,本文就将为大家介绍其使用方式及主要的一些功能。 2 DataSpell EAP版本使用体验   你可以在官网https://www.jetbrains.com/dat

  • 云原生的弹性 AI 训练系列之三:借助弹性伸缩的 Jupyter Notebook,大幅提高 GPU 利用率2021-10-18 16:34:06

    Jupyter Notebooks 在 Kubernetes 上部署往往需要绑定一张 GPU,而大多数时候 GPU 并没有被使用,因此利用率低下。为了解决这一问题,我们开源了 elastic-jupyter-operator,将占用 GPU 的 Kernel 组件单独部署,在长期空闲的情况下自动回收,释放占用的 GPU。这篇文章主要介绍了这一开源项

  • jupyter notebook取消密码2021-10-17 10:32:38

    1.终端界面中输入: jupyter notebook --generate-config 使用记事本打开该文件,之前介绍过,这里不在赘述。 2.找到这一行  修改为:  注:一定要把前面的#删除!!保存即可!

  • jupyter设置指定的python环境2021-10-16 22:29:58

    前提 先提前声明一下我的环境,之前只是在服务器上装过jupyter。今天在Windows10上装了一个annaconda3,想着搭建一个jupyter环境。安装完annaconda3之后,会自带一个jupyter记事本。 按理说在命令行如下命令 conda activate 环境名称 激活一个conda环境后在打开jupyter,输入如下命

  • jupyter notebook 安装中文字体显示2021-10-16 16:02:19

     下载字体SimHei。将字体拷贝到如下目录下:  sudo cp ~/SimHei.ttf /usr/share/fonts/SimHei.ttf  通过以下代码找到matplotlibrc文件, import matplotlib matplotlib. matplotlib_fname() 进入到matplotlibrc文件, cd /usr/local/lib/python3.8/dist-packages/matplotlib/mpl-d

  • Jupyter Notebook使用虚拟环境内核2021-10-16 12:01:09

    【针对问题】: 当我们的内核中只有默认的环境,而我们想要使用已安装好的虚拟环境  【解决方法】: (首先我们默认大家已经安装好虚拟环境) ①找到默认的内核地址: 默认anaconda内核存储地址 C:\Users\**\AppData\Roaming\jupyter\kernels——其中**代表用户名 个人自定义anaconda

  • 安装模块后jupyter notebook依旧引入失败 | ModuleNotFoundError: No module named 'pandas'2021-10-15 16:31:54

    解决方式 先找到包所在位置 pip show --verbose pandas 在编程时加上pandas的路径 import sys sys.path.append('C:\programdata\anaconda3\lib\site-packages') import pandas 参考:https://blog.csdn.net/yy2yy99/article/details/87875091

  • ImportError: FloatProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.r2021-10-15 10:58:59

    在使用juypter下载数据集时,出现下面的错误 ImportError: FloatProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html 问题分析:这大多是因为ipywidgets原因:版本或者根本没有安装ipywidgets插件

  • name ‘_C‘ is not defined(pytorch1.9.0在jupyter notebook上报错)2021-10-14 19:59:33

    NameError Traceback (most recent call last) in 1 from algorithms import Argparser ----> 2 from algorithms import Session 3 def main(): 4 print("main started") 5 args = Argparser.parse() D:\git\stav\stav-rl\algorithms\Session.py in 12 13

  • colab连接本机2021-10-14 11:03:02

    需要安装插件 pip install --upgrade jupyter_http_over_ws && \ jupyter serverextension enable --py jupyter_http_over_ws 启动 jupyter notebook \ --NotebookApp.allow_origin='https://colab.research.google.com' \ --port=8889 \ --Notebo

  • 记载一次离奇经历2021-10-13 22:33:38

    为jupyter lab安装代码补全的离奇经历 故事的开始起源于本人想用jupyter lab 来写代码,但jupyter lab的代码补全实在是难以忍受。。。。 遇到的第一个boss……nodejs 用conda安装了nodejs,遇到了第一个问题,总是给我安装6.2.1,kora!我要安装nodejs>=12 啊! 使用conda uninstall nodejs

  • 亲测jupyter打不开浏览器2021-10-12 23:05:17

    问题描述 有粉丝给我说他们的jupyter不能自动打开浏览器,jupyter notebook输入回车后,不能跳转,把输出的链接复制粘贴到浏览器后,写的代码页不能运行。 问题解决 我帮他们调了很久后才发现,不是软件什么的问题,而是他们的用户名为中文的问题。只要把用户名改为英文即可:注销原来的账

  • 在python中操作mongodb,数据分析概念,工作流程,三剑客,ipython模块,jupyter模块和Anaconda软间2021-10-12 21:04:31

    在python中操作mongodb,数据分析概念、模块和Anaconda软件 pymongo模块 数据分析概念 数据分析的工作流程 ipython模块 jupyter模块 Anaconda软件 pomongo模块 pymongo模块可以实现python和mongoDB实时交互 pomongo下载 pip3 install pymongo -i https://pypi.tuna.tsinghua.edu

  • 如何基于Jupyter notebook搭建Spark集群开发环境2021-10-12 11:33:37

    摘要:本文介绍如何基于Jupyter notebook搭建Spark集群开发环境。 本文分享自华为云社区《基于Jupyter Notebook 搭建Spark集群开发环境》,作者:apr鹏鹏。 一、概念介绍: 1、Sparkmagic:它是一个在Jupyter Notebook中的通过Livy服务器 Spark REST与远程Spark群集交互工作工具。Sparkmagi

  • 手把手教你Anaconda与jupyter安装配置与使用2021-10-11 21:30:54

    文章目录 一、anaconda安装二、jupyter安装配置三、jupyter汉化四、使用jupyter1)检查是否安装成功2)创建项目3)修改项目名称4)菜单栏介绍5)运行Python代码6)注释编辑7)快捷键 五、添加镜像源六、模块安装卸载pycharm安装jupyter1)安装2)运行 jupyter notebook 总结 一、anaconda

  • 一些问题:jupyter相关2021-10-11 20:01:20

    遇到的一点问题: jupyter notebook 如何修改一开始打开的文件夹路径? - 小宾的回答 - 知乎 https://www.zhihu.com/question/31600197/answer/1246935230 Jupyter Notebook介绍、安装及使用教程: https://www.jianshu.com/p/91365f343585/

  • 服务器配置Jupyter实现多设备浏览器访问2021-10-11 17:06:15

    背景 在服务器配置Jupyter,则可以实现多地登录。只要手边有设备,并且服务器的Jupyter服务也保持工作,可以随时随地通过Jupyter编写代码。 本文记录一下如何在服务器配置Jupyter,我使用的服务器系统为Ubuntu 18.04,且安装了anaconda。 操作 1.conda安装Jupyter,若以安装则直接跳转第2步;

  • Jupyter notbook 的 IBM Qiskit环境配置2021-10-10 23:34:04

    资源准备:Anaconda3-2021.05-Windows-x86_64 链接:https://pan.baidu.com/s/17qzoruYTOYLURfTzTj5tUQ 提取码:yxh1 --来自百度网盘超级会员V1的分享 anaconda的Conda国内加速镜像源(国防科大镜像源) 为了加快conda下载速度,我们将下载通道改为国内源 还原原始通道 conda config --rem

  • jupyter notebook的安装与使用2021-10-10 17:34:06

    **1.**安装jupyter pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple 有可能出现报错—更新pip(可能遇到已有版本无法卸载并找不到当前版本的情况 解决—>python -m pip install --upgrade pip 2.启动Jupyter 命令行:jupyter notebook 启动成功则可以在浏览

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有