python linux 下开发环境搭建

1.1: 在虚拟环境目录下安装 ipython  => pip install ipython

1.2: 简单的使用 => ipthyon => print("heollo, word") => exit

2.1: 安装 jupyter => pip install jupyter 

2.2: 修改密码 => jupyter notebook password

2.3: 启动 jupyter => jupyter notebook --ip 0.0.0.0 --no-browser

2.4: 如果在 root 目录下运行需要加上 --allow-root 绕过 => 

  jupyter notebook --ip 0.0.0.0 --no-browser --allow-root

2.5: 访问: 同一网段下的电脑输入: 本机ip:8888 即可访问 => 默认端口为 8888

2.6: 如果不能访问到, 可能需要修改防火墙规则

3.1: 导出依赖包 => pip freeze > /tmp/pack.txt

3.2: 进入到另一个环境下 => pip install -r /tmp/pack.txt

上一篇:一道简单的dp题 --- Greenhouse Effect CodeForces - 269B


下一篇:IO - IOUtils