11 2017 档案

摘要:在调试MATLAB的时候,这一点很容易实现,比如动态修改变量的值,在VS2017中调试python程序,这一点也很容易实现,但是我在pycharm里面找了半天,如下图: 阅读全文
posted @ 2017-11-24 19:58 rldts 阅读(639) 评论(0) 推荐(0) 编辑
摘要:如果stop-dfs.sh也报了这个错,把$HADOOP_HOME/libexec/hadoop-config.sh中的如下内容之前加上 export JAVA_HOME=/home/lqr/Tools/jdk1.8.0_151 # Attempt to set JAVA_HOME if it is 阅读全文
posted @ 2017-11-19 15:30 rldts 阅读(1223) 评论(0) 推荐(0) 编辑
摘要:参考: https://stackoverflow.com/questions/22983101/how-to-uninstall-intellij-idea-on-ubuntu-13-10 @SLH_IB https://askubuntu.com/questions/300684/uninsta 阅读全文
posted @ 2017-11-15 20:50 rldts 阅读(9892) 评论(0) 推荐(0) 编辑
摘要:python2:sudo apt-get install python-pip python3:sudo apt-get install python3-pip 切换python2和python3的版本:http://www.cnblogs.com/qrlozte/p/7838827.html 阅读全文
posted @ 2017-11-15 14:43 rldts 阅读(646) 评论(0) 推荐(0) 编辑
摘要:原文:https://www.cnblogs.com/jokie/p/6933546.html Ubuntu默认Python为2.7,所以安装Python包时安装的为py2的包。 利用alternatives机制更改py3为默认。 shell里执行: sudo update-alternatives 阅读全文
posted @ 2017-11-15 14:38 rldts 阅读(2905) 评论(0) 推荐(0) 编辑
摘要:原文:http://www.codeweblog.com/%E8%A7%A3%E5%86%B3qq%E9%9F%B3%E4%B9%90%E7%BD%91%E9%A1%B5%E7%89%88%E5%9C%A8ubuntu-firefox%E4%B8%8B%E6%97%A0%E6%B3%95%E6%92 阅读全文
posted @ 2017-11-14 10:44 rldts 阅读(490) 评论(0) 推荐(0) 编辑
摘要:原文:https://www.cnblogs.com/scplee/archive/2016/05/13/5489024.html 以前用Ubuntu 14.04 的时候,直接下载有道词典官方deb安装包,就安装好了,现在换成Ubuntu 16.04因为有些依赖问题就无法安装成功。于是Google之 阅读全文
posted @ 2017-11-13 20:40 rldts 阅读(362) 评论(0) 推荐(0) 编辑
摘要:原文:http://lkf009.iteye.com/blog/1327912 提示权限不够的原因:CLASSPATH=.;$JAVA_HOME/lib/tools.jar;$JAVA_HOME/lib/dt.jar这样写是不对滴,要这样写:CLASSPATH=.:$JAVA_HOME/lib/to 阅读全文
posted @ 2017-11-13 19:22 rldts 阅读(603) 评论(0) 推荐(0) 编辑
摘要:参考:http://blog.csdn.net/csdnones/article/details/50449947 卸载只需要删除解压出来的目录就行了,然后删除/home/你用登录名/IntelliJIdea14(或者IdeaProjects之类的目录) 阅读全文
posted @ 2017-11-13 08:28 rldts 阅读(3192) 评论(0) 推荐(0) 编辑
摘要:原文:https://jingyan.baidu.com/article/20b68a88563a1b796cec6228.html 步骤如下: (1)在浏览器的地址栏输入:about:config,按回车 (2)点击“我保证会小心” (3)在搜索框输入:browser.search.openint 阅读全文
posted @ 2017-11-13 08:13 rldts 阅读(193) 评论(0) 推荐(0) 编辑
摘要:参考:https://www.findhao.net/res/786 打开终端,执行: pidof fcitx | xargs kill fcitx -r 上面两句意思就是kill fcitx的进程再重启之 阅读全文
posted @ 2017-11-12 22:32 rldts 阅读(627) 评论(0) 推荐(0) 编辑
摘要:转自:https://www.cnblogs.com/laishenghao/p/5346651.html 最终解决办法: sudo adduser lqr vboxsf 这里lqr是我的用户名 然后重启系统 阅读全文
posted @ 2017-11-12 21:24 rldts 阅读(274) 评论(0) 推荐(0) 编辑
摘要:既然是调试python脚本,那么我首先想到的是附加到进程(python.exe) 至于为什么不用F5直接启动python脚本呢,因为调用命令如下 或许直接在脚本里open('inputFile.txt')不就完了么,当然可以这样,不过你这调试完了又得把代码修改回去,麻烦 如果要使用附加到进程,那么就 阅读全文
posted @ 2017-11-10 17:01 rldts 阅读(603) 评论(0) 推荐(0) 编辑