码迷,mamicode.com
首页 > 其他好文 > 详细

服务器搭建jupyter

时间:2020-10-05 22:32:11      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:qt5   esc   配置   not   dir   hive   als   installer   ack   

Q1:xpinyin模块打包之后显示找不到指定文件Mandarin.dat

description:

 见标题

answer:

在Anaconda\Lib\site-packages\xpinyin路径下找到__init__.py

然后在__init__.py中编辑,找到

data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),

                         ‘Mandarin.dat‘)

将其修改为并保存

data_path = os.path.join(os.getcwd(), ‘Mandarin.dat‘)

最后使用pyinstaller对自己的程序进行打包,并且将生成的exe文件和Mandarin.dat放在同一目录下,exe文件即可正常运行

Q2:配置好后,在本地远程登陆jupyter notebook输入密码后一直显示密码无效(Invalid credentials)。。

description:

 见标题

answer:

在终端输入jupyter notebook password强行重置密码

Q3:服务器搭建anconda环境

description:

 见标题

answer:

 

命令窗输入,等待下载完成

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2020.02-Linux-x86_64.sh

然后通过 bash Anaconda3-2020.02-Linux-x86_64.sh 安装一直按回车,出现输入yes或者no,一律输入yes

 

配置anaconda的 环境变量

sudo vim /etc/profile   vim后面有空格 i进入编辑模式

添加最后PATH那行,路径选择自己的安装路径

 

ESC进入命令模式,输入:wq保存退出

 

source /etc/profile   source后面有空格

输入python检查版本是否更新

Q4:linux搭建jupyter notebook实现远程登陆

description:

 见标题

answer:

生成配置文件

jupyter notebook –generate-config

创建登陆密码

ipython

from notebook.auth import passwd

passwd()

Enter password:                        输入你得密码

Verify password:                       确认密码

最后会输出一串,记住,一会儿要用

最后quit()退出

 

修改配置文件

cd .jupyter

vim jupyter_notebook_config.py

光标移动到最下面

插入

c.NotebookApp.ip = ‘*‘

c.NotebookApp.open_browser = False

c.NotebookApp.password=‘sha1:74d233d59da1:50d7ef60a58456e2016dc427547fb42cdd971cea‘  刚才生成的密码

c.NotebookApp.port = 6789              开放端口

 

ESC 输入:wq保存

设置安全组

手动添加如下图

 

终端输入jupyter notebook password 重置密码

Jupyter notebook –allow-root运行服务器

此时在本地浏览器输入自己的公网ip加自己的端口

例如: 47.99.71.239:6789

公网ip从实例哪里获取

 

 

Q5:spyder无法正常开启

description:

 见标题

answer:

降低pyqt5的版本,pip install pyqt5==版本号

 

服务器搭建jupyter

标签:qt5   esc   配置   not   dir   hive   als   installer   ack   

原文地址:https://www.cnblogs.com/xiaozhen522/p/13770983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!