阳光灰狼

文章
4
资源
0
加入时间
2年10月21天

#!/usr/bin/env: No such file or directory

一、原因:在把windows下的一个python脚本挪到linux下的时候,文件格式保存错误,应该存为unix格式。详细解释二、解决方法:vim xx.py输入::set fileformat=unix然后赋予其权限:chmod a+x xx.py最后执行:./xx.py三、linux下执行.py文件两种方式:1.直接python执行:python3 xx.py2.脚本执行:./xx.py...

2021-09-27

jupyter notebook报错:Bad file descriptor (C:\projects\libzmq\src\epoll.cpp:100)pyzmq的版本过高 安装19.0.2版本的pyzmq,不能用conda install,要用pip installpip install pyzmq==19.0.2