avatar

刘刚刚的blog

采菊东篱下,悠然见南山🦥

  • 首页
  • python
  • 大模型应用
  • 软件/工具导航页
  • 关于
Home 虚拟环境中安装Jupyter Notebooks
文章

虚拟环境中安装Jupyter Notebooks

Posted 2020-12-15 Updated 2024-12- 17
By Administrator
2~3 min read

Jupyter Notebooks是一款可以处理python语法的开发工具,对于测试算法和分析数据方面比其他的工具(比如pycharm)更加方便。


虚拟环境中安装Jupyter Notebooks

安装虚拟环境的步骤可以参考:python-虚拟环境的搭建及使用

# 使用以下命令创建虚拟环境
mkvirtualenv -p python3.7  jupyter

# 安装
pip3 install jupyter

# 在cmd中输入以下命令即可在浏览器中弹出jupyter的界面
jupyter notebook

如果没有弹出jupyter的界面,也可以复制图中的两个地址中的一个,进行访问。

image-20201215234621432

python
python
License:  CC BY 4.0
Share

Further Reading

May 27, 2025

python中一些很好用的工具类模块

contextlib 此模块为 with 语句提供了一些工具,简化了 with的使用。 @contextlib.contextmanager 它将一个生成器函数转换为一个上下文管理器。而无需创建一个类或单独的 __enter__() 和 __e

Apr 21, 2025

Typing

类型注释让python 有了更好的编辑器提示功能。 基础使用 对函数参数和返回值,进行类型注释 def surface_area_of_cube(edge_length: float) -> str:    return f"The surface area of the cube is {6 *

Feb 25, 2025

python多进程多线程下的计数及日志打印

注意点: 需要保证在多进程内的进程锁是同一个 需要保证在单进程中的多线程内线程锁是同一个 # logger.py import multiprocessing import threading ​ ​ class Logger_test:    def __init__(self, process

OLDER

python-项目的简单上线

NEWER

01-numpy的简介及array的创建

Recently Updated

  • Gemini 使用过程中的一些坑
  • python中一些很好用的工具类模块
  • 常用的uml类图及其表示方法
  • 文本切分-语义分割(Semantic Chunking)
  • dify 并发 及配置优化

Trending Tags

Halo 运维 postgresql 设计模式 linux就该这么学 nas rag odoo python 文本切分

Contents

©2025 刘刚刚的blog. Some rights reserved.

Using the Halo theme Chirpy