1. SuperVessel Cloud官网申请免费云主机 http://www.ptopenlab.com
  2. 创建Ubuntu虚拟机。
  3. 运行虚拟机后,连接网站提供的vpn账号,即可通过ssh连接虚拟机。进入root权限 su,然后修改root密码。
  4. 执行 apt-get update 安装pip:apt-get install python-pip
  5. 原来官网的预装python科学计算包已经没有了,必须自己安装环境,而且ipython也安装不了了,现在只能用jupyter
    使用pip安装jupyter pip install jupyter
    安装报错:fatal error: Python.h: No such file or directory
    解决 apt-get install python-dev 参考http://stackoverflow.com/questions/21530577/fatal-error-python-h-no-such-file-or-directory
    运行jupyter jupyter notebook
    报错 No module named markupsafe
    安装模块 pip install markupsafe
    参考https://github.com/rdickert/project-quicksilver/issues/6
    再次运行jupyter,依然报错ImportError: No module named zmq.eventloop
    安装模块 apt-get install python-zmq
    参考http://stackoverflow.com/questions/32894313/cannot-start-ipython-notebook-by-missing-a-module-called-zmq-eventloop
  6. 运行jupyter
    成功启动
    注意<a href=http://localhost:8888/” title=”” />
    但是在本地浏览器中输入虚拟机的外网ip和端口并不能访问,提示服务器拒绝了连接。
    于是关闭虚拟机的防火墙 ufw disable,然而并未奏效。
    百度一下,试了这个命令 jupyter notebook --ip 0.0.0.0(注意ip前面是两个‘-’)
    成功通过本地浏览器连接虚拟机了。
    hello world来一个
    这里写图片描述
    pandas与matplotlib示例
    这里写图片描述

参考
[1] https://my.oschina.net/u/1431433/blog/383540#comment-list
[2] https://services.ptopenlab.com/mediawiki/index.php/Main_Page

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐