点击新建Python文件即弹出弹窗显示 Permission denied: Untitled.ipynb 看到Permission denied 尝试是权限问题进行解决,各种百度结果都是对文件进行权限777的操作,如下: sudo chmod ~/.local/share/jupyter/ cd ~/.local/share/jupyter/ ls sudo chmod runtime/ cd runtime/ 注意这里的jupyter目录是.local下share下的路径,不是你自己定义的安…
学习matplotlib时,使用的jupyter跑代码.报错如上图.大致就是后面的注释不能被识别.我寻思着注释不用识别吧,大概是因为%后跟的语句被全部当成命令行执行了,然后命令行不识别行内注释,导致报错 UsageError: unrecognized arguments如此分析一波,解决方法就很简单了,删掉注释..  …
一.问题 运行jupyter notebook,然后运行python代码,读取文件处理时,会报错.发现时IO读取时错误.应该是IO速率问题. 下面是问题报错: IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config varia…
为了兼容N多个网站,服务器上有3个PHP版本5.3/5.6/7.2.宝塔默认为5.3,但是laravel5.7并不支持,所以在创建线上 .env 环境配置文件,初始化应用配置时候报错了. cp .env.example .env php artisan key:generate 报错1:PHP脚本占用内存太多,memory_limit默认128m不够用.PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted .Composer…
报错: [FATAL] [1576042404.913706482]: Failed to create the global_planner/GlobalPlanner planner, are you sure it is properly registered and that the containing library is built? Exception: According to the loaded plugin descriptions the class global_pl…
from docx import Document报错: Import Error: No module named ‘exceptions‘ 解决办法: 使用下面的命令重新安装docx !pip install python-docx…
select 查询数据(大部分) 在网站应用中进行数据显示查询操作 insert 插入数据 在网站应用中进行用户注册添加等操作 delete 删除数据 后台管理里面删除文章删除用户等操作 update 更新数据 数据同步缓存等操作 通过以上查询方式与网站应用的关系,可以由注入点产生地方或应用猜测到对方的SQL查询方式 注意:扫描工具一般不能扫描到insert,updata,delete命令的注入点,因为交互过程复杂,涉及到用户登录状态,用户行为交互等方面,这就需要手工测试了 模拟网站环境执行SQ…
router Uncaught Error: Template parse errors: 'router-outlet' is not a known element: If 'router-outlet' is an Angular component, then verify that it is part of this module. If 'router-outlet' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to t…
出问题的关键点就在: 我用cmd启动的jupyter notebook,然后用pycham新建了一个jupyter notebook 结果 一直报错'_xsrf' argument missing from POST 找来找去 还是去官方文档看了段靠谱的 https://www.jetbrains.com/help/pycharm/using-ipython-notebook-with-product.html 关键步骤翻译如下: 1,去设置里面搜索Project Interpreter 给项目…
解决方法1. 在终端执行: export LD_LIBRARY_PATH=”$LD_LIBRARY_PATH:/usr/local/cuda/lib64” export CUDA_HOME=/usr/local/cuda 但是每次要运行tensorflow时都得执行此命令,而且在Spyder.jupyter notebook中仍然报错. 解决方法2.  在bashrc中写入路径: sudo vim ~/.bashrc export LD_LIBRARY_PATH=”$LD_LIBRARY_PAT…