Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 348 Bytes

3工具使用.md

File metadata and controls

24 lines (19 loc) · 348 Bytes

工具使用

jupyter

#启动
jupyter notebook
# 转换ipynb为python
jupyter nbconvert --to script next.ipynb

虚拟环境

# 安装
pip install virtualenv

# 创建虚拟环境
virtualenv venv -p /usr/bin/python3 # -p指定环境
# 进入虚拟环境
source venv/bin/activate
# 退出虚拟环境
deactivate