
pycharm
学习和记录pytharm的一些操作
YUE.YUN
这个作者很懒,什么都没留下…
展开
-
UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring it
在pycharm中如恶化解决这个问题:UserWarning: mkl-service package failed to import, therefore Intel® MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please instal原创 2020-12-21 16:39:03 · 7405 阅读 · 0 评论 -
一直 connecting to console
处于一直加载状态:可以参考这两篇博客,感谢博主提供的解决办法, 大家有问题可以先看看对应博客下的留言https://blog.youkuaiyun.com/qq_41153943/article/details/100188221https://blog.youkuaiyun.com/weixin_44612441/article/details/105354195基本思路就是:打开cmd通过输入%PATH%查到环境变量的路径然后再复制到系统环境变量中,或者复制到setting中或者系统的环境变量中去。亲测,复制到原创 2020-12-21 16:03:51 · 1662 阅读 · 0 评论 -
conda安装库存在的问题
这是错误:xmlrpc.client.Fault: <Fault -32500: “RuntimeError: PyPI’s XMLRPC API has been temporarily disabled due to unmanageable load and will be deprecated in the near future. See https://status.python.org/ for more information.”>在此之前,我已经添加了永久的添加了清华的数据原创 2020-12-21 15:30:12 · 2180 阅读 · 4 评论 -
pycharm中断点的使用
设置好断点后,按如下方法进行运行:step over:IDE就会让当前的程序执行完当前行的代码。 如果该代码里面有函数调用,执行 不会暂停在函数里面 ,而是直接运行完所有的函数里面的代码, 暂停在 下一行代码。step into:IDE就会让当前的程序执行一步当前行代码。 如果该代码里面有函数调用,执行 就会暂停在函数里面 。resume program:直接运行到断点处,但不运行断点行(即颜色标记行)...原创 2020-12-15 15:00:13 · 1084 阅读 · 0 评论