SuperVessel Cloud 免费云主机python科学计算环境搭建
SuperVessel Cloud官网申请免费云主机 http://www.ptopenlab.com;创建Ubuntu虚拟机。运行虚拟机后,连接网站提供的vpn账号,即可通过ssh连接虚拟机。进入root权限 su,然后修改root密码。执行 apt-get update 安装pip:apt-get install python-pip原来官网的预装python科学计算包已经没有了,必须自
·
- SuperVessel Cloud官网申请免费云主机 http://www.ptopenlab.com;
- 创建Ubuntu虚拟机。
- 运行虚拟机后,连接网站提供的vpn账号,即可通过ssh连接虚拟机。进入root权限
su
,然后修改root密码。 - 执行
apt-get update
安装pip:apt-get install python-pip
- 原来官网的预装python科学计算包已经没有了,必须自己安装环境,而且ipython也安装不了了,现在只能用jupyter。
使用pip安装jupyterpip 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
运行jupyterjupyter 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 - 运行jupyter
成功启动
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
更多推荐
已为社区贡献1条内容
所有评论(0)