美文网首页
linux命令

linux命令

作者: 微澜55 | 来源:发表于2018-11-01 10:27 被阅读0次

在linux系统下开发时,经常会遇到一些问题,所使用的命令并不常见,本文即为记录自己日常遇到的一些特殊问题及解决方案,类似工具形式,供以后查询备用。

文件处理命令

1.ipynb文件转py文件

jupyter nbconvert --to script *.ipynb 

软件安装问题

1.pip安装python第三方库

原始命令:pip install chatterbot

错误信息:

        Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。: 'c:\\programdata\\anaconda3\\lib\\site-packages\\dateutil\\__init__.py'

       Consider using the `--user` option or check the permissions.

解决方案如下:使用命令“pip install --user chatterbot"即可

2.启动jupyter

python3 -m IPython notebook

相关文章

网友评论

      本文标题:linux命令

      本文链接:https://www.haomeiwen.com/subject/zqxpaftx.html