hackthebox jupyter medium

anaconda的jupyter默认工作目录配置

D:\PromingCode\anaconda\python.exe D:\PromingCode\anaconda\cwp.py D:\PromingCode\anaconda D:\PromingCode\anaconda\python.exe D:\PromingCode\anaconda\S ......
anaconda jupyter 目录

hackthebox escape medium windows

RECON TLS certificate openssl s_client -showcerts -connect 10.10.11.202:3269 | openssl x509 -noout -text- "openssl s_client" initiates an SSL/TLS conn ......
hackthebox windows escape medium

Jupyter Notebook的10个常用扩展介绍

Jupyter Notebook(前身为IPython Notebook)是一种开源的交互式计算和数据可视化的工具,广泛用于数据科学、机器学习、科学研究和教育等领域。它提供了一个基于Web的界面,允许用户创建和共享文档,这些文档包含实时代码、方程、可视化和文本。 在数据科学和人工智能领域,Jupyt ......
Notebook 常用 Jupyter

SciTech-BigDataAIML-Jupyter- 扩展Jupyter Notebook 的文档 Extending the Notebook

Docs » Extending the Notebook » Custom request handlers Edit on GitHub Note You are not reading the most recent version of this documentation. v7.0.6 ......

CF1884C Medium Design

CF1884C Medium Design 翻译 首先可以想到一个性质:覆盖 \(\min\) 的区间加上一定不优。因此考虑以每个点为 \(\max\),判断包含这个位置的所有线段中和的最小值 然后就不会了 \(QwQ\) 原来这里还有一个性质:最小值一定是 \(\min(a_1,a_m)\),因为 ......
Medium Design 1884C 1884 CF

hackthebox absolute insane

信息收集 Pay attention to the last line ssl-date: we have 7 hour clock skew,which should keep in mind if doing any keberos auth. SMB-TCP445 smbclient -N - ......
hackthebox absolute insane

Jupyter 安装

最近想折腾下数据分析,重拾python,遂有了这篇文章,以此开启记录学习过程。 一、安装 网上有很多安装教程,起初为了图便利是直接通过pip来安装的, mac通过pip安装 pip3 install jupyter 但是在新建python文件时会报500 服务器内部错误,服务端日志打印了一个perm ......
Jupyter

Jupyter Notebook 安装使用及快捷键

​ 参考文档:Jupyter Notebook 安装使用及快捷键 1、安装条件 安装Jupyter Notebook之前需要已经安装Python(3.3版本及以上,或2.7版本)。如若初学者可以参考下面使用Anaconda安装的方法。 2、使用 pip 安装 Jupyter Notebook 安装 ......
快捷键 Notebook Jupyter

jupyter 设置中文

jupyter 设置中文1. 下载中文包pip install jupyterlab-language-pack-zh-CN1 2. 选择中文-完成 ......
jupyter

jupyter

1、安装: pip3 install jupyter 2、配置: 生成配置文件:jupyter-lab --generate-config 查看配置:jupyter-lab --show-config 查看配置文件路径:jupyter --config-dir 相关配置: c.ServerApp.i ......
jupyter

vulnhub-medium_socnet

medium_socnet 从学长那里薅来的靶机,说是基于docker的,挺有意思,那必须搞一下呀!(后面百度才知道这玩意是vulnhub上面的) 0x01 信息收集 一、主机扫描 还是老规矩,nmap扫一手。 发现192.168.56.101主机,而且22和5000端口是开着的。 访问一下5000 ......

hackthebox broscience medium

Briefly instruction: This time,the target machine encouter some url coding,php code audit found deserialization,script writing according to the conten ......
hackthebox broscience medium

hackthebox bagel medium

Flask exploit /proc/self/cmdline understands which process is currently running to provice the web service. curl http://10.10.11.201:8000/?page=../../ ......
hackthebox medium bagel

关于jupyter notebook不弹出网页的问题

运行栏中输入jupyter notebook后,其启动速度慢而且之后打开的是sublime text C:\Users\lenovo>jupyter notebook 其原因是html文件的默认格式打开方式设置为了sublime或者是其他软件。 修改html的默认打开软件为浏览器就可以直接在浏览器打 ......
notebook jupyter 网页 问题

为jupyter notebook添加目录和代码补全功能,添加插件

安装完成后 jupyter notebook就会发现界面多了Nbextensions选项卡 点击该选项卡,勾选Table of Contents(2)复选框,添加目录 勾上Hinterland就可以实现代码补全功能啦: 如下图所示: ......
插件 notebook jupyter 代码 功能

jupyter notebook代码补全扩展安装遇到 Jupyter command `jupyter-contrib` not found.” 问题

Jupyter command jupyter-contrib not found. 解决方案——新的安装方式。 方法1 : pip方式 1.先使用以下命令,卸载旧版本的 jupyter_contrib_nbextensions 和 upyter_nbextensions_configurator: ......

Jupyter Notebook 数学公式

转载至: https://blog.csdn.net/smilejiasmile/article/details/80670742 https://www.zybuluo.com/codeep/note/163962 1.如何插入公式 行中公式(放在文中与其它文字混编)可以用如下方法表示:$ 数学公 ......
公式 Notebook Jupyter 数学

hackthebox jupyter medium

BREIFLY. this box is quite hard for beginner. the walkthrough is following: 1.nmap scan open ports detail and discover this box open 22 and 80 port bu ......
hackthebox jupyter medium

设置jupyter中DataFrame的显示限制方式

jupyter中显示的DataFrame过长时会自动换行(print()显示方式)或自动省略(单元格最后一行直接显示),在一些情况下看上去不是很方便,可调节显示参数如下: import pandas as pd pd.set_option('display.width', 500) #设置整体宽度 ......
DataFrame jupyter 方式

Jupyter Notebook 使用与安装

简介 Jupyter Notebook就是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示的程序。如在编程过程中需要编写说明文档,可在同一个页面中直接编写,便于作及时的说明和解释。 官网:https://jupyter-notebook.readthed ......
Notebook Jupyter

Jupyter Notebook使用anaconda虚拟环境

参考: https://blog.csdn.net/qq_34319660/article/details/126246351 基本上就是如下几步 启动环境 conda activate LLM_env 查看已安装路径 jupyter kernelspec list 安装ipykernel pip ......
Notebook anaconda Jupyter 环境

Codeforces Round 904 (Div. 2) C. Medium Design

jly:开始的想法:首先枚举max的位置。包含它的一定是全加,剩下的一定都不加。然后求所有位置的最小值。 初始全0,枚举max之后,因为是加区间,min一定在两端(最左或最右)。所以不需要枚举max,我们枚举min就好(因为加区间和初始全0,这个题的特殊性)。 写法注意的点:下标从0开始,区间的左端 ......
Codeforces Design Medium Round 904

hackthebox broker easy

brief intruducton 1.The first breakthrouth is week password of admin at http://10.10.11.243/ website. if we could utilize admin/admin successfully acc ......
hackthebox broker easy

hackthebox format medium walkthrough

walkthough 1.We must browse the website and look up the business point for the webpage. at this box we can find the code repository.code auditing and ......
walkthrough hackthebox format medium

CF1884 C Medium Design

Link CF1884 C Medium Design Question 有一个数组 \(a_1...a_m\) 和 \(N\) 个区间 \(L_i,R_i\) 我们可以选一部分区间,使得 \([a_{L_i},a_{R_i}]\) 的每一个值都 \(+1\) 求 \(max(a)-min(a)\) ......
Medium Design 1884 CF

机器学习环境安装和使用之02Jupyter Notebook的使⽤

Jupyter Notebook简介 jupyter Notebook(前身是 IPython Notebook)是一个开源的交互式计算和数据可视化工具(web程序),支持多种编程语言,最常用的是 Python。 它提供了一个基于 Web 的界面,用户可以在浏览器中创建和共享文档,这些文档包含实时代 ......
Notebook 机器 Jupyter 环境 02

用Jupyter Notebook自带的方法转换成PDF

python版本3.7~3.9 安装nbconvert 1 pip install nbconvert 方式一: 需要安装Chromium 也有两种方法: 1.需要安装Chocolatey(会自动安装Chromium 浏览器) 1 Set-ExecutionPolicy Bypass -Scope ......
Notebook Jupyter 方法 PDF

jupyter notebook 设置主题

打开cmd窗口命令行: 1 pip install jupyterthemes 查看有哪些主题可用 1 jt -l -t:设置主题 -f:设置代码字体 -fs:设置代码字体大小 -cellw:设置单元格宽度 -ofs:输出结果的字体大小 -dfs:pandas的DF字体大小 -T:设置工具栏可见 - ......
notebook jupyter 主题

Jupyter Notebook报错'500 : Internal Server Error'的解决方法

问题根因 Jupyter相关的软件包版本匹配存在问题,或者历史上安装过Jupyter相关的配套软件但是有残留。大部分网上的博客都是推荐用pip重装jupyter或者nbconvert,亲测无法解决该问题。 解决方案 按照指定的匹配版本,全部重装ipython、jupyter和notebook等软件, ......
Internal Notebook Jupyter 方法 Server

【nest入门】[bug记录]在jupyter notebook中使用conda环境(linux)

NEST在安装引导 https://nest-simulator.readthedocs.io/en/stable/installation/user.html#user-install 中提供了conda的方式,如下图所示: 如上图中步骤第1步,进行了 conda create --name ne ......
notebook jupyter 环境 conda linux
共228篇  :1/8页 首页上一页1下一页尾页