Python3 jupyter notebook 服务器搭建过程
1. jupyter notebook 安装 •创建 jupyter 目录 mkdir jupyter cd jupyter/ •创建独立的 Python3 运行环境,并激活进入该环境 virtualenv --python=python3 --no-site-packages venv source venv/bin/activate •安装 jupyter pip install jupyter 2. jupyter notebook 配置 •创建 notebooks 目录 mkdir notebooks 用于保存网页端创建的 ipynb 文件。 •生成配置文件 jupyter
用户评论