স্বপ্নচারী লিখেছেন:nobody, আপনি main.py এ রাইট ক্লিক করে Open with... থেকে IDLE দিয়ে ফাইলটি ওপেন করুন। এবারে মেনু থেকে Run ক্লিক করুন। আরেকটা উইন্ডো ওপেন হবে, সেখানে কী লেখা আছে সেটা জানান বা স্ক্রিনশট দিন।
vaia onek dhonnobad uttor deaor jonno.pata khular por
# main.py
# qtdsexporter
# Created by M. Nasimul Haque.
# Copyright 2010, M. Nasimul Haque.
# This is a free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import sys
from PyQt4 import QtGui
from window import MainWindow
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
try:
window = MainWindow()
window.show()
except Exception, e:
print(e)
sys.exit(QtGui.QMessageBox.critical(None, "Error: starting app",
"Please check that mongodb server is running"))
sys.exit(app.exec_())
2nd
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
****************************************************************
Personal firewall software may warn about the connection IDLE
makes to its subprocess using this computer's internal loopback
interface. This connection is not visible on any external
interface and no data is sent to or received from the Internet.
****************************************************************
IDLE 2.6.5 ==== No Subprocess ====
>>>