Which all IDE will support python scripts? - ide

My laptop is working in windows 7 OS. I want to start working with Python, But i don't have Linux in my system. Can you suggest any IDE which will help me to start my Python scripting under windows OS???

You can download the Anaconda Python packages and run them with Komodo Edit IDE. Other option is to use eclipse, which is quite bulky. A comprehensive summary is available at Choosing Python IDE

Related

Installing Flask with Python Pycharm NOT Professional

So I understand that if you have unpaid Pycharm you cannot execute or open Flask?
Is there another IDE for Python where I can install Flask without paying pro?
Bottom line I am trying to learn this program and part of the learning is Flask. If else I pay Pro.
Flask can be installed with pip. pip install flask
With PyCharm you can make a configuration to run your python file
PyCharm Pro will have better support but community version can definitely do the task.
Also html css and js are better supported in PyCharm Pro
Also for web dev I would suggest VSCode (if you don't wanna pay)

Is Chaincoder IDE Compatible with Ubuntu 18.04?

I am learning hyperledger fabric and want to use an IDE for the same.While searching about it in google, i came across Chaincoder IDE, But according to the website, its only available for Windows 10(Pro or Enterprise) and MacOs. I am working in Ubuntu 18.04 so i want to know will it work in Ubuntu or not ?
The website is clear
There is an exe for Windows
a Zip for Macos
So no available version for Linux.
Downloading it was enough to answer your question.

can not find ssh interpereter in pycharm

I want to add ssh interpreter at pycharm,
but I can't find it.
what's the reason? and How can I fix it?
this is the version of my pycharm
SSH-based interpreters are supported in PyCharm Professional Edition only. See the comparison matrix https://www.jetbrains.com/pycharm/features/editions_comparison_matrix.html

Are libraries built using the Linux subsystem in Windows 10 accessible to a Windows development environment?

I'm currently trying to connect MongoDB to a Windows QT C++ application and am following the tutorial here. While there Windows installation instructions are presented, to avoid having to install Visual Studio or other tools, I'm wondering if I can follow the package-manager or Linux instructions on the inbuilt Linux/ Ubuntu subsystem of Windows 10 and build the libraries in my Linux environment, later somehow accessing them from my Windows development environment.
I don't fully understand how compilation/ byte-code works in the Linux subsystem on Windows, so I haven't been able to piece together an answer for this myself based on my understanding of the various systems involved. Any explanation or assistance would be appreciated.
You can run a Windows executable from a WSL console window or a Linux executable from Windows command line / power shell. And capture the output, pipe between applications etc. But the application must run entirely on one platform; you cannot mix a Windows executable with Linux libraries or vice-versa.
I don't know how you will connect to MongoDB but, if it has a socket interface like MySql, you could create a bash script on WSL which runs your QT application to access the database, wherever it is.
But if you're using QT as a GUI you're going to struggle. People have been able to get a Linux desktop running on WSL by installing an X server on the Windows host but you might find that more trouble than it's worth.

Salesforce IDE starting error

I have installed the standalone IDE for salesforce force.com platform. On trying to start the ide i am getting "JVM terminated. Exit Code=-1" error. Any idea what this error code means ?
This is a common loading error for force.com IDE.
There are different solutions. Try anyone of these:
A) Change the workspace location.
OR
B) (i). Install Eclipse 3.6 for Java Developers (Helios) from the link http://www.eclipse.org/downloads/packages/eclipse-ide-java-developers/heliossr2
Click your operating system from the window on your right.
(ii). Using the below link, follow the instructions to install Force.com IDE plugin for Eclipse 3.6 http://wiki.developerforce.com/page/Force.com_IDE_Installation_for_Eclipse_3.6
OR
C) In the default Force.com IDE install directory:
C:\Program Files\salesforce.com\Force.com IDE
Locate the config file:
forceide
And comment out the following at the end of the file (note the leading #):
#-vmargs
#-Dfile.encoding=UTF-8
#-Xms256m
#-Xmx1024m
#-XX:PermSize=128M
#-XX:MaxPermSize=512M
I hope it works now.
Cheers!
This could be because of various reasons. Say, if you do not have enough memory (RAM) as specified in config file(forceide.ini). As said in this link Force.com IDE – JVM terminated , probably reduce MaxPermSize in config file to say 256M and check.
This exact thing happened to me a few days ago.
My setup is:
Windows 7 64 bit
jre7 64 bit
Force.com IDE 64 bit
When I ran the java auto update to update my jre it installed the 32 bit version (a whole other gripe). So I manually downloaded the 64 bit version of the jre installed it over the top of the 32 bit version and the IDE started working again.