ide

PyCharm debugger doesn't work

笑着哭i 提交于 2020-01-01 15:06:56
问题 I just downloaded PyCharm community edition and every time I try to debug any Python program in PyCharm, I get this error: C:\Python31\python.exe "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.1\helpers\pydev\pydevd.py" --multiproc --qt-support --client 127.0.0.1 --port 59207 --file C:/Users/Gal/PycharmProjects/untitled/test.py pydev debugger: process 5388 is connecting Connected to pydev debugger (build 145.260) Traceback (most recent call last): File "C:\Program Files (x86

Notepad++ 配置为Python IDE

喜欢而已 提交于 2020-01-01 09:50:18
Notepad++ 配置为Python IDE 很多的IDE 打开反应普遍偏慢,而且对新人不是那么友好。今天教大家一个轻量级的文本编辑器,作为Python的IDE。那就是Notepad++,开源,免费,而且有很多可用插件。关键是这个打开速度之快,对于写的代码行数不多的情况下非常适合。 复制下面的代码。 cmd /kpython "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT 打开Notepad++,按下键盘F5,粘贴上面的一行代码,然后保存,输入一个名字如:Python,选择快捷键,我习惯使用Ctrl+R键,但是这个组合键已经被占用。可以去Setting->Shortcut Mapper 里面设置,选中第七行,点击clear,这步可以在保存之前做。 输入一个name 比如py, 然后OK。搞定使用notepad++打开一个一个python 文件或者编写一个。 我们来一个9*9表,加百钱买鸡的问题。 #- - coding:utf-8 - - #Advanced Classes and Objects from enum import Enum,unique,auto import math x=math.pi print(x) for i in range(1, 10): for j in range(1, i + 1): print(’

Run a PHP script directly in PhpStorm

断了今生、忘了曾经 提交于 2020-01-01 07:39:58
问题 How can I instantly run the current PHP file in PhpStorm? How can I execute PHP command in PHPstorm like PyCharm? 回答1: Right click in the editor, choose Run (or press ctrl+shift+f10) for command line script execution. If you want to test it on a web server, use Open in Browser from the same menu (you must have browser and server with mappings properly configured for this). 回答2: On top of @CrazyCoder's solution, in version 2016.3 I came across this issue where I just saw 2 icons like this, You

Pet slept on keyboard, weird colors in IDE [duplicate]

梦想的初衷 提交于 2020-01-01 07:36:07
问题 This question already has answers here : How does this Color marker happen in eclipse IDE ,and what should I do to clear the Color marker (2 answers) Closed 9 months ago . Please stop laughing. My cat slept on my keyboard. When I came back I wonder what these colors are: I like to get rid of them but I don't know how to remove them. Close and reopen of the file does not work. Close and reopen of the project does not work. Any idea? 回答1: Upvote for the cutest question ever. Regarding the

eclipse manual code folding similar to visual studio region

只谈情不闲聊 提交于 2020-01-01 05:41:29
问题 visual studio has an excellent feature for manual code folding by using regions. i am new to eclipse and android but cant find figure out how to do this in eclipse. i am missing this feature in eclipse desperately has anyone achieved this in eclipse thanks in advance 回答1: I use eclipse Coffee-Bytes plugin over a year. This eclipse folding plugin can be configured so that it was identical to visual studio folding. Lock this and this. Hope it's help you. 回答2: Manual code folding can be added by

What IronPython IDE should I use?

孤人 提交于 2020-01-01 04:29:12
问题 This question probably looks a lot like IDE for ironpython on windows question here on stackoverflow. But I read the answers on that question I still have no idea what IDE I should use. What I'm looking for is to know pros and cons of a specific IDE. I recently started learning IronPython. The only IDE I used so far is IronPython Studio that integrates with Visual Studio. It was a logical choice for me because I use Visual Studio when I work with C#. One of the problem I have with IronPython

Is there a C++ IDE which handles templates well?

自闭症网瘾萝莉.ら 提交于 2020-01-01 04:16:53
问题 Every IDE I've tried fails to provide code-completion when something template-related is used. For example, boost::shared_ptr<Object> ptr; ptr->[cursor is here] Is there IDE that can provide code completion in this case? 回答1: Actually this is a fairly simple template use-case, Qt Creator can handle this easily and more complex template code aswell. 回答2: Visual Studio with Visual Assist X handles that case, but still fails more complex code. 回答3: I've always use Eclipse C/C++ IDE. It supports

Best C++ development environment in Linux

自作多情 提交于 2020-01-01 03:46:09
问题 I have some experience with Eclipse and Qt creator and am somewhat disappointed in their debuggers, less so in their editors. On Windows, I like Visual Studio for debugging and SlickEdit for editing (SE is also available on Linux). Is there an IDE that is somehow better than the two mentioned? 回答1: I definitely recommend Eclipse and the CDT plugin. Emacs would be my preferred choice if you only need a good editor and not a full IDE. I use Eclipse almost every day on Linux, mostly for C++

Effects of IDE/Text-Editor Color Settings on our Eyes [closed]

Deadly 提交于 2020-01-01 03:24:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Today, we've several IDE/Editor for programming: visual studios, vim, gvim, emacs, eclipse and so on. Whatever we use, we've some color preferences for background and foreground. While most of us are satisfied with the default settings, some do customize the IDE/Editor, choose colors of their taste for various

matlab code analyzer produces empty tooltips

末鹿安然 提交于 2020-01-01 02:33:12
问题 I'm running MATLAB (R2013b) on Ubuntu (results of ver command are pasted below). I've just started working with this system, and I've realized that coding is seriously hard because the typical "tooltips" that show up in the editor are empty. Unfortunately I cannot paste screenshots, but here I describe the problem: the orange marks on the right margin of the editor should indicate a warning. Passing the cursor on them, one typically gets a tooltip with a short message, detailing the reason of