Avoid 'Reloaded modules: <module_name>' message in Python - python

I am getting the above mentioned error:
'Reloaded modules: <module_name>'
Since I want to keep my code as it is, i'd like to disable this warning. How can this be done? I am using Spyder 3.2.3.

Go to Tools -> Preferences -> Python Interpreter and you will find User Module Reloader. Just deselect the checkbox with text as Show reloaded module list.

In spyder 2.3 you need to do the following:
Go to Tools -> Preferences -> Console -> Advanced settings
or Tools -> Preferences -> Python interpreter in Spyder 5 (added thanks to #Osama El-Ghonimy)
then scroll down to:
desellect Enable UMR
Click on Apply (Anwenden) and restart Spyder.
The error should be gone now...

Related

Blank terminal screen unable to type anything in Platformio-ide-terminal in Atom

I have installed platformio-ide-terminal in Atom for working on python project. But when I open the terminal it shows blank screen with no option to write anything.
Blank terminal screen
Can anyone please help me out with this. I have also tried terminal plus and still the same issue.
Below worked for me :
Open 'Atom' -> 'File' -> 'Settings' -> 'Packages' -> 'Settings' for platformio-ide-terminal -> Scroll down to 'Shell override' and pass correct path of command prompt.
e.g.,
Here the same problem after the last "platformio terminal' update, the terminal is completely blocked. I opened an case for this on github and found out that the plugin is NO longer supported on Atom. Uninstalling and installing does not solve the problem.
There Microsoft is the owner of Github now, I decided to switch from "Atom" to "VSCode" and without any regrets till now. (much faster, more stable, same amount of plugins). My terminal works like a charm again!

How do I change start up preferences for IPython console in PyCharm?

I am trying to do what the user from this question is doing. I have it working for the separate IPython console but not the one integrated into PyCharm.
To sum up, I want IPython to import some modules when I start it. I have gone to the C:\Users\Name\.ipython\profile_default\startup directory and I have made a startup.py file which contains
from numpy import *
print 'NumPy imported succesfully!'
After setting PYTHONSTARTUP to point to the file, the IPython console outside of PyCharm works as intended, but the one in PyCharm does not.
You can go to File -> Settings -> Build, Execution, Deployment -> Console -> Python Console. There you have a field named "Starting script" which is executed when you launch the console.
I had to restart PyCharm for the changes to actually take place, but it worked.
Note : I use PyCharm 4.5.3 Community Edition.

How to run a file in SublimeREPL?

To run a file via the SublimeREPL plugin, I select 'Tools' -> 'SublimeREPL' -> 'Eval In REPL' -> 'File'
When I select 'File' nothing happens. How do I configure Sublime Text 2 to use a specified REPL ?
I think SublimeREPL only supports this for python files, if you look here you'll see that it is only under the python heading that this feature is mentioned.
Python
Launch python in local or remote(1) virtualenv.
Quickly run selected script or launch PDB.
Use SublimeText2 Python console with history and multiline input.
Besides if you press(on windows) shift+ctrl+p you'll see that if you type repl current it will say:
SublimeREPL: Python - RUN Current File
As the only alternative, well except for PDB.
As #daniel-figueroa states, SublimeREPL only runs Python code as far as I'm aware.
If you are just trying to run Python with SublimeREPL, try:
Tools -> SublimeREPL -> Python -> Python -> RUN current file
Alternatively, if you're actually intending to evaluate with SublimeREPL, the plugin author, #wuub explains and offers a solution HERE.

How to make Eclipse (pydev) automatically fold all comments when opening a file?

Is there a way that eclipse (edit: under windows) folds all comments and docstrings automatically when I open a python file?
By default the loop and condition folds are disabled, to enable them go to Window -> Preferences -> PyDev -> Editor -> Code Folding. Apply code folding to all entries
This feature is now available in PyDev and can be enabled by going into the preferences:
PyDev > Editor > Code Folding
and then selecting what you want to fold initially.
i.e.:

Automatic indentation for Python in Notepad++

I've been googling lots and this is getting really frustrating. It doesn't act like idle.
Example:
else:
name = 'World'
print 'Howdy', name
print 'yay'
but in Notepad++
else: # i press enter and this is what it does
lands me here
But I want to be able to do like in idle: after the : I can just press enter and keep on going. My English isn't that great.
I have my filetype set to Python etc. and my format to unix.
This is what you want:
Settings > Preferences > MISC. > Auto-Indent (checkbox)
--
Sometimes people ask, "How can I do x in program y?"
I have a dream that one day "Use program z instead" will not be the most popular response.
I played a bit with python in Notepad++ and I had a problem with the tab.
Since in python your indentation is really important but notepad ++ put space instead of a tab.
So to change to tab you need to go in notepad ++ Menu Settings > Preferences... then select Tab Settings Then select python in the Tab Settings box and uncheck Use default value and check Replace by space.
Like the other answer, you might want to consider another ide.
I personally use eclipse with the pydev plugin and django plungin.
Erik is nice too.
I found the Python Indent plugin on the official plugin page, and it worked fine!
http://docs.notepad-plus-plus.org/index.php/Plugin_Central#P
Well, here is a updated answer:
Notepad++ >> Plugins >> plugin manager >> show plugin manager >> find (python indent) click install >> should be downloaded you need to reach to enable again from Plugins>>python indent>>enable
Go to Settings > Preferences > Language
Then on the "Tab Settings" box select "python"
and tick the "Use default value" checkbox.
You're welcome.
P.S. Yeah, I know this a little old. I really just couldn't help it.
Anyway, this is for version v7.3.2.
-- For Newer Versions , Goto Settings>>Preferences>>Auto-Completion>>Auto-Indent(checkbox)
-- For Older Versions , Goto Settings > Preferences > MISC. > Auto-Indent (checkbox)
By the time of this post, The newest Version of Notepad++ is v7.8.7.(tested)
Click on Settings
Click Preferences...
Browse drop-down menu to find MISC.
Tick the box which says Auto-indent
After that, you should be fine.
Restart Notepad++ after, and then it works.
This is for Notepad++ version v8.1.9.3 (the latest as of today)
Before starting this, save your work... but no need to close any open tab
First; install the plugin
Plugins > Plugins Admin > Search: Python Indent > Python Indent (check box) > Install > Yes
Notepad++ will restart... it will take 10 seconds or so
Second; enable the plugin
Plugins > Python Indent > Enable
Third; Have fun!
Do a test... and let me know
None of the above solutions worked for me but this worked:
Install latest version of notepad++ (as of Feb 2022)
Goto Settings -> Preferences -> Language -> Tab Settings -> Select Python -> Uncheck (Default Value) and make sure that the 'Replace by space' is selected with 4 as the count
Next, goto Settings -> Preferences -> Auto-Completion -> Enable Auto-Indent (if it's not already enabled)
This should work as expected as it's working for me.
In Notepad++ version v8.4.4
The Auto Indent is located in Settings->Preferences->Auto-Completion
and no longer in MISC.
However, for Python indentation it didn't work for me.
What worked is to use the Python Indent plugin (set to Enable).
A better ide might be spyder. http://code.google.com/p/spyderlib/ its about the best IDE I have found.
Geany is a fast and light-weight cross-platform IDE, it supports auto-completion and auto-identation for python code, execute run your program , integrated console , plus has a symbol list side pannel that lets you visualize and browse you code easily, you can jump directly to function definitions and the likes using the context menu, plus it's open source
How ever for a full fledged IDE i would recommand Eric4
I've found Notepad++ to live up to the task of being a better basic text editor than Notepad, but it isn't really designed to be as smart as a proper programming IDE.
It might be possible to get it to do what you're asking for, but I certainly don't know how to set it up that way.
Emacs has python-mode which (also) does it. Grab it and prepare for life-time enjoyment.

Categories

Resources