java setup

java setup

Hi,

Iam created a desktop
login application using swings.
pls observe the following code:


import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;

class LoginDemo{
JButton SUBMIT;
JFrame f;
JLabel label1,label2;
final JTextField text1;
final JPasswordField text2;
LoginDemo(){
f=new JFrame();
f.getContentPane().setLayout(null);
label1 = new JLabel();
label1.setText("UserName:");
label1.setBounds(400,50,100,20);
text1 = new JTextField(25);
text1.setBounds(500,50,100,20);
label2 = new JLabel();
label2.setText("Password:");
label2.setBounds(400,80,100,20);
text2 = new JPasswordField(25);
text2.setBounds(500,80,100,20);
SUBMIT=new JButton("Login");
SUBMIT.setBounds(500,110,100,20);

f.add(label1);
f.add(text1);
f.add(label2);
f.add(text2);
f.add(SUBMIT);
f.setSize(1024,768);
f.setVisible(true);
SUBMIT.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String value1=text1.getText();
String value2=text2.getText();
String user1="";
String pass1="";
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
Connection con = DriverManager.getConnection("jdbc:odbc:msdesktop");
Statement st = con.createStatement();
ResultSet res = st.executeQuery("SELECT * FROM test where Empname='"+value1+"' and Emppassword='"+value2+"'");
while (res.next()) {
user1 = res.getString("Empname");
pass1 = res.getString("Emppassword");
}
if(!value1.equals(user1) && !value2.equals(pass1)) {
JOptionPane.showMessageDialog(null,"Incorrect login or password","Error",JOptionPane.ERROR_MESSAGE);
text1.setText("");
text2.setText("");
}
else if(value1.equals("")){
JOptionPane.showMessageDialog(null,"Please Enter Username");
}
else if(value2.equals("")){
JOptionPane.showMessageDialog(null,"Please Enter Password");
}
else{
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:odbc:msdesktop");
PreparedStatement pstmt = conn.prepareStatement("insert into logininformation(username,logindate,logintime) values(?,?,?)");
pstmt.setString(1, value1);
java.sql.Date sqlDate = new java.sql.Date(new java.util.Date().getTime());
pstmt.setDate(2, sqlDate);
java.sql.Time sqlTime = new java.sql.Time(new java.util.Date().getTime());
pstmt.setTime(3,sqlTime);
/*java.sql.Timestamp sqlDate = new java.sql.Timestamp(new java.util.Date().getTime());
pstmt.setTimestamp(2, sqlDate);*/
pstmt.executeUpdate();
pstmt.close();
conn.close();
JOptionPane.showMessageDialog(null,"Login Successful");
}
catch(Exception ex){}
}
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
});
}
public static void main(String arg[]) {
LoginDemo frame=new LoginDemo();
}
}



and




import mysql.DataAcc;
// import package class for getting database connection
import java.sql.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
class D1 extends JFrame implements ActionListener{
//instance variable
String str="";
/* Swing classess */
JLabel l,l1,l2,l3,l4,title,l5,l6;
JTextField t,t1,t2,t3,t4;
JButton b,b1,b2,b3,b4,b5,exit;
JTextArea ta,ta1;
//create new instance of class D1
D1() {
setSize(700,500); //set Frame Size
Container c=getContentPane(); //Objects add to Container
c.setLayout(null);
ta=new JTextArea(30,30);
title=new JLabel("Employee Information");
l1=new JLabel("Employee Number");
l2=new JLabel("Employee Name");
l=new JLabel("Employee Password");
l3=new JLabel("Employee Salary");
l4=new JLabel("Employee Address");
l5=new JLabel("Database Operation's ");
t1=new JTextField(10);
t2=new JTextField(10);
t =new JTextField(10);
t3=new JTextField(10);
t4=new JTextField(10);
b=new JButton("Reports");
b1=new JButton("Insert");
b2=new JButton("Delete");
b3=new JButton("Update");
b4=new JButton("Single");
b5=new JButton("View");
exit=new JButton("Exit");
//set bounds() palce components in a givel dimesions in the Frame
title.setBounds(200,10,150,100);
//components add to Continer
c.add(title);
l1.setBounds(100,40,150,100);
c.add(l1);
l2.setBounds(100,70,150,100);
c.add(l2);
l.setBounds(100,100,150,100);
c.add(l);
l3.setBounds(100,130,150,100);
c.add(l3);
l4.setBounds(100,160,150,100);
c.add(l4);
l5.setBounds(200,230,250,100);
c.add(l5);
t1.setBounds(250,80,150,20);
c.add(t1);
t2.setBounds(250,110,150,20);
c.add(t2);
t.setBounds(250,140,150,20);
c.add(t);
t3.setBounds(250,170,150,20);
c.add(t3);
t4.setBounds(250,210,150,20);
c.add(t4);
//add buttons to the ActionListener Interface
b .addActionListener(this);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
b5.addActionListener(this);
exit.addActionListener(this);
b .setBounds(10,240,80,20);
c.add(b);
b1.setBounds(100,240,80,20);
c.add(b1);
b2.setBounds(190,240,80,20);
c.add(b2);
b3.setBounds(280,240,80,20);
c.add(b3);
b4.setBounds(370,240,80,20);
c.add(b4);
b5.setBounds(460,240,80,20);
c.add(b5);
exit.setBounds(550,240,80,20);
c.add(exit);
ta.setBounds(200,300,270,100);
c.add(ta);
setVisible(true);
}
public void actionPerformed(ActionEvent e) {
Connection con=null;
DataAcc d=new DataAcc();
if(e.getSource()==b1) {
ta.setText(str);
/*get values from textfields*/
int sno=Integer.parseInt(t1.getText());
String sname=t2.getText();
String spwd =t.getText();
double sal=Double.parseDouble(t3.getText());
String address=t4.getText();
try {
con=d.getConnect();
PreparedStatement pst=con.prepareStatement("insert into test values(?,?,?,?,?)");
pst.setInt(1,sno);
pst.setString(2,sname);
pst.setString(3,spwd);
pst.setDouble(4,sal);
pst.setString(5,address);
int i=pst.executeUpdate();
if(i>0)
l5.setText("Insertion Operation Performed");
else
l5.setText("Insertion Operation Failed");
pst.clearParameters();
/*text field values clear after insertion performed*/
t1.setText("");
t2.setText("");
t.setText("");
t3.setText("");
t4.setText("");
}catch(Exception ae){
ae.printStackTrace();
}
}//Buuton B1 if




if(e.getSource()==b){
int sno=Integer.parseInt(t1.getText());
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:msdesktop");
PreparedStatement pst=con.prepareStatement("select * from test where Empnumber="+sno);
ResultSet rs=pst.executeQuery();
JFrame f=new JFrame();
f.getContentPane().setLayout(null);
int n1=0,n3=0;
String n="",n2="",n4="";
if(rs.next()) {
n1=rs.getInt(1);
n2=rs.getString(2);
n=rs.getString(3);
n3=rs.getInt(4);
n4=rs.getString(5);
}
f.add(new JLabel("Emp No:")).setBounds(400,50,100,30);
f.add(new JLabel(Integer.toString(n1))).setBounds(500,50,100,30);
f.add(new JLabel("Name:")).setBounds(400,100,100,30);
f.add(new JLabel(n2)).setBounds(500,100,100,30);
f.add(new JLabel("Password:")).setBounds(400,150,100,30);
f.add(new JLabel(n)).setBounds(500,150,100,30);
f.add(new JLabel("Salary:")).setBounds(400,200,100,30);
f.add(new JLabel(Integer.toString(n3))).setBounds(500,200,100,30) ;
f.add(new JLabel("Address:")).setBounds(400,250,100,30);
f.add(new JLabel(n4)).setBounds(500,250,100,30);
f.setVisible(true);
f.setSize(1000,1000);
}catch(Exception ae){
ae.printStackTrace();
}
}//Buuton B1 if





if(e.getSource()==b5) {
ta.setText(str);
try {
con=d.getConnect();
PreparedStatement pst=con.prepareStatement("select * from test");
ResultSet rs=pst.executeQuery();
while(rs.next()) {
int n1=rs.getInt(1);
String n2=rs.getString(2);
String n=rs.getString(3);
double n3=rs.getDouble(4);
String n4=rs.getString(5);
/*append all values to the text area by ta.append()*/
ta.append(""+n1+"\t"+n2+"\t"+n+"\t"+n3+"\t"+n4+"\n");
//JOptionPane.showMessageDialog(null,n1+"\n"+n2+"\n"+n3+"\n"+n4);
l5.setText("View test Table Data");
}
}catch(Exception ae){
ae.printStackTrace();
}
}//Button b5 if
if(e.getSource()==b2) {
ta.setText(str);
int sno=Integer.parseInt(t1.getText());
try {
con=d.getConnect();
PreparedStatement pst=con.prepareStatement("delete from test where Empnumber="+sno);
int i=pst.executeUpdate();
if(i>0)
l5.setText("Deletion Operation Performed");
else
l5.setText("Deletion Operation Failed");
pst.clearParameters();
t1.setText("");
t2.setText("");
t.setText("");
t3.setText("");
t4.setText("");
}catch(Exception ae){
ae.printStackTrace();
}
}//Button b2 if
if(e.getSource()==b3) {
ta.setText(str);
int sno=Integer.parseInt(t1.getText());
String sname=t2.getText();
String spwd=t.getText();
double sal=Double.parseDouble(t3.getText());
String address=t4.getText();
try {
con=d.getConnect();
//PreparedStatement pst=con.prepareStatement("update test set sname=?,spwd=?,sal=?,address=? where sno=?");
PreparedStatement pst=con.prepareStatement("update test set Empname=?,Emppassword=?,Empsal=?,Empadd=? where Empnumber=?");
pst.setString(1,sname);
pst.setString(2,spwd);
pst.setDouble(3,sal);
pst.setString(4,address);
pst.setInt(5,sno);
int i=pst.executeUpdate();
if(i>0)
l5.setText("Update Operation Performed");
else
l5.setText("Update Operation Failed");
pst.clearParameters();
t1.setText("");
t2.setText("");
t.setText("");
t3.setText("");
t4.setText("");
}catch(Exception ae){
ae.printStackTrace();
}
}//button b3 if
if(e.getSource()==b4) {
ta.setText(str);
int sno=Integer.parseInt(t1.getText());
try {
con=d.getConnect();
PreparedStatement pst=con.prepareStatement("select * from test where Empnumber="+sno);
ResultSet rs=pst.executeQuery();
if(rs.next()) {
t1.setText(""+rs.getInt(1));
t2.setText(rs.getString(2));
t.setText(rs.getString(3));
t3.setText(""+rs.getDouble(4));
t4.setText(rs.getString(5));
ta.append(t1.getText()+"\n"+t2.getText()+"\n"+t.getText()+"\n"+t3.getText()+"\n"+t4.getText());
l5.setText("Record Avilable with Serial Number : "+sno);
}
else {
l5.setText("No Record Avilable with Serial Number : "+sno);
pst.clearParameters();
t1.setText("");
t2.setText("");
t.setText("");
t3.setText("");
t4.setText("");
}
}catch(Exception ae){
ae.printStackTrace();
}
}//Button b5 if
if(e.getSource()==exit)
System.exit(0);

}
}
class Database {
public static void main(String[] args) {
D1 d=new D1();
}

}




and




package mysql;
import java.sql.*;
import java.io.*;

public class DataAcc
{
public Connection con=null;
public Connection getConnect()
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:msdesktop");
System.out.println("Connected");
}
catch(Exception e)
{
System.out.println(e);
}
return con;
}//getConnection

}//class




the program works successfully.

my problem is "the total application is converted into the setup file".

how can u convert the desktop application
into setup file .

please help me.

the Answers is


Try the following code:

import java.io.*;
import java.util.jar.*;

public class CreateExe {
public static int buffer = 10240;
protected void createExeArchive(File jarFile, File f) {
try {
byte b[] = new byte[buffer];
FileOutputStream fout = new FileOutputStream(jarFile);
JarOutputStream out = new JarOutputStream(fout, new Manifest());

if (f == null || !f.exists()|| f.isDirectory())
System.out.println();
JarEntry addFile = new JarEntry(f.getName());
addFile.setTime(f.lastModified());
out.putNextEntry(addFile);

FileInputStream fin = new FileInputStream(f);
while (true) {
int len = fin.read(b, 0, b.length);
if (len <= 0)
break;
out.write(b, 0, len);
}
fin.close();

out.close();
fout.close();
System.out.println("Jar File is created successfully.");
} catch (Exception ex) {}
}
public static void main(String[]args){
CreateExe jar=new CreateExe();
File f = new File("C:/LoginDemo.java");
File file=new File("C:/LoginDemo.exe ");
jar.createExeArchive(file, f);
}

}


how this is compile and run and where the setup file is created can u tell me please.
View Answers

July 28, 2010 at 4:54 PM

Hi Friend,

import java.io.*;
import java.util.jar.*;

public class CreateJar {
public static int buffer = 10240;
protected void createJarArchive(File jarFile, File[] listFiles) {
try {
byte b[] = new byte[buffer];
FileOutputStream fout = new FileOutputStream(jarFile);
JarOutputStream out = new JarOutputStream(fout, new Manifest());
for (int i = 0; i < listFiles.length; i++) {
if (listFiles[i] == null || !listFiles[i].exists()|| listFiles[i].isDirectory())
System.out.println();
JarEntry addFiles = new JarEntry(listFiles[i].getName());
addFiles.setTime(listFiles[i].lastModified());
out.putNextEntry(addFiles);

FileInputStream fin = new FileInputStream(listFiles[i]);
while (true) {
int len = fin.read(b, 0, b.length);
if (len <= 0)
break;
out.write(b, 0, len);
}
fin.close();
}
out.close();
fout.close();
System.out.println("Jar File is created successfully.");
} catch (Exception ex) {}
}
public static void main(String[]args){
CreateJar jar=new CreateJar();
File folder = new File("C:/Answers/Examples");
File[] files = folder.listFiles();

File file=new File("C:/Application.jar ");
jar.createJarArchive(file, files);
}

}

Put the path of directory in which you have created java files, into the following code:

File folder = new File("-----here-----");

The above code will compile and run same as other java files and create your set up file in the c drive with the name Application.jar

Thanks









Related Tutorials/Questions & Answers:
Setup in Java
Setup in Java  Hello I want to know that how to create make setup in java of a java program or jFrame applicatio or Applet.Plz give answer ASAP. Thanks & Regards Sunil Kumar
Setup file - Java Beginners
Setup file  Hello sir ,how i can make Java Programs Set up File.... Point to note here is that the Java compiler very well knows about...: http://www.roseindia.net/java/exceptions/how-to-throw-exceptions.shtml
Advertisements
java setup - Java Beginners
java setup  Hi, Iam created a desktop login application using swings. pls observe the following code: import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.*; class LoginDemo{ JButton
java setup - Java Beginners
java setup  Hi, Iam created a desktop login application using swings. pls observe the following code: import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.*; class LoginDemo{ JButton
installation and setup problem - Java Beginners
installation and setup problem  Hi, Iam new to java.Can any one tell me about how to install tomcat5.5 and set up in my windows xp operating system in detail? Thanks in advance
Tomcat Environment Setup - Java Beginners
Environmental Variables: 1) JAVA_HOME = C:\Java\jdk1.6.0; 2) CATALINA_HOME = C:\apache-tomcat-6.0.18; 3) PATH =C:\Java\jdk1.6.0\bin; 4) CLASS_PATH
Setup validator framework in Struts
Setup validator framework in Struts  How to Setup validator framework in Struts
ModuleNotFoundError: No module named 'Setup'
ModuleNotFoundError: No module named 'Setup'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'Setup' How to remove the ModuleNotFoundError: No module named 'Setup'
Creating a setup file
Creating a setup file  How to create a setup file in tomcat as done in visual studio... could plz tell me as early as possible
ModuleNotFoundError: No module named 'alignak_setup'
ModuleNotFoundError: No module named 'alignak_setup'  Hi, My... 'alignak_setup' How to remove the ModuleNotFoundError: No module named 'alignak_setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'Audit-setup'
ModuleNotFoundError: No module named 'Audit-setup'  Hi, My Python... 'Audit-setup' How to remove the ModuleNotFoundError: No module named 'Audit-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'easy-setup'
ModuleNotFoundError: No module named 'easy-setup'  Hi, My Python... 'easy-setup' How to remove the ModuleNotFoundError: No module named 'easy-setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'ez_setup'
ModuleNotFoundError: No module named 'ez_setup'  Hi, My Python..._setup' How to remove the ModuleNotFoundError: No module named 'ez_setup... to install padas library. You can install ez_setup python with following
ModuleNotFoundError: No module named 'kira-setup'
ModuleNotFoundError: No module named 'kira-setup'  Hi, My Python... 'kira-setup' How to remove the ModuleNotFoundError: No module named 'kira-setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'logger-setup'
ModuleNotFoundError: No module named 'logger-setup'  Hi, My Python... 'logger-setup' How to remove the ModuleNotFoundError: No module named 'logger-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'mmf-setup'
ModuleNotFoundError: No module named 'mmf-setup'  Hi, My Python... 'mmf-setup' How to remove the ModuleNotFoundError: No module named 'mmf-setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'nester-setup'
ModuleNotFoundError: No module named 'nester-setup'  Hi, My Python... 'nester-setup' How to remove the ModuleNotFoundError: No module named 'nester-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'nester-setup'
ModuleNotFoundError: No module named 'nester-setup'  Hi, My Python... 'nester-setup' How to remove the ModuleNotFoundError: No module named 'nester-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'nimbus-setup'
ModuleNotFoundError: No module named 'nimbus-setup'  Hi, My Python... 'nimbus-setup' How to remove the ModuleNotFoundError: No module named 'nimbus-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'pipenv-setup'
ModuleNotFoundError: No module named 'pipenv-setup'  Hi, My Python... 'pipenv-setup' How to remove the ModuleNotFoundError: No module named 'pipenv-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'piws_setup'
ModuleNotFoundError: No module named 'piws_setup'  Hi, My Python... 'piws_setup' How to remove the ModuleNotFoundError: No module named 'piws_setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'poetry-setup'
ModuleNotFoundError: No module named 'poetry-setup'  Hi, My Python... 'poetry-setup' How to remove the ModuleNotFoundError: No module named 'poetry-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'pypath-setup'
ModuleNotFoundError: No module named 'pypath-setup'  Hi, My Python... 'pypath-setup' How to remove the ModuleNotFoundError: No module named 'pypath-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'pyros-setup'
ModuleNotFoundError: No module named 'pyros-setup'  Hi, My Python... 'pyros-setup' How to remove the ModuleNotFoundError: No module named 'pyros-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'SecretStorage-Setup'
ModuleNotFoundError: No module named 'SecretStorage-Setup'  Hi, My... named 'SecretStorage-Setup' How to remove the ModuleNotFoundError: No module named 'SecretStorage-Setup' error? Thanks   Hi
ModuleNotFoundError: No module named 'SecretStorage-Setup'
ModuleNotFoundError: No module named 'SecretStorage-Setup'  Hi, My... named 'SecretStorage-Setup' How to remove the ModuleNotFoundError: No module named 'SecretStorage-Setup' error? Thanks   Hi
ModuleNotFoundError: No module named 'setup-env'
ModuleNotFoundError: No module named 'setup-env'  Hi, My Python... 'setup-env' How to remove the ModuleNotFoundError: No module named 'setup... have to install padas library. You can install setup-env python with following
ModuleNotFoundError: No module named 'setup-freeze'
ModuleNotFoundError: No module named 'setup-freeze'  Hi, My Python... 'setup-freeze' How to remove the ModuleNotFoundError: No module named 'setup-freeze' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'setup-log'
ModuleNotFoundError: No module named 'setup-log'  Hi, My Python... 'setup-log' How to remove the ModuleNotFoundError: No module named 'setup... have to install padas library. You can install setup-log python with following
ModuleNotFoundError: No module named 'setup_qt'
ModuleNotFoundError: No module named 'setup_qt'  Hi, My Python... 'setup_qt' How to remove the ModuleNotFoundError: No module named 'setup_qt... to install padas library. You can install setup_qt python with following
ModuleNotFoundError: No module named 'setup-recipe'
ModuleNotFoundError: No module named 'setup-recipe'  Hi, My Python... 'setup-recipe' How to remove the ModuleNotFoundError: No module named 'setup-recipe' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'setup-release'
ModuleNotFoundError: No module named 'setup-release'  Hi, My... 'setup-release' How to remove the ModuleNotFoundError: No module named 'setup-release' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'setup-services'
ModuleNotFoundError: No module named 'setup-services'  Hi, My... named 'setup-services' How to remove the ModuleNotFoundError: No module named 'setup-services' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'tarrah-setup'
ModuleNotFoundError: No module named 'tarrah-setup'  Hi, My Python... 'tarrah-setup' How to remove the ModuleNotFoundError: No module named 'tarrah-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'test_setup'
ModuleNotFoundError: No module named 'test_setup'  Hi, My Python... 'test_setup' How to remove the ModuleNotFoundError: No module named 'test_setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'xiangqi-setup'
ModuleNotFoundError: No module named 'xiangqi-setup'  Hi, My... 'xiangqi-setup' How to remove the ModuleNotFoundError: No module named 'xiangqi-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'alignak_setup'
ModuleNotFoundError: No module named 'alignak_setup'  Hi, My... 'alignak_setup' How to remove the ModuleNotFoundError: No module named 'alignak_setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'Audit-setup'
ModuleNotFoundError: No module named 'Audit-setup'  Hi, My Python... 'Audit-setup' How to remove the ModuleNotFoundError: No module named 'Audit-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'basin-setup'
ModuleNotFoundError: No module named 'basin-setup'  Hi, My Python... 'basin-setup' How to remove the ModuleNotFoundError: No module named 'basin-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'cfgov-setup'
ModuleNotFoundError: No module named 'cfgov-setup'  Hi, My Python... 'cfgov-setup' How to remove the ModuleNotFoundError: No module named 'cfgov-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'cmake-setup'
ModuleNotFoundError: No module named 'cmake-setup'  Hi, My Python... 'cmake-setup' How to remove the ModuleNotFoundError: No module named 'cmake-setup' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'django-setup'
ModuleNotFoundError: No module named 'django-setup'  Hi, My Python... 'django-setup' How to remove the ModuleNotFoundError: No module named 'django-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'easy-setup'
ModuleNotFoundError: No module named 'easy-setup'  Hi, My Python... 'easy-setup' How to remove the ModuleNotFoundError: No module named 'easy-setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'ez_setup'
ModuleNotFoundError: No module named 'ez_setup'  Hi, My Python..._setup' How to remove the ModuleNotFoundError: No module named 'ez_setup... to install padas library. You can install ez_setup python with following
ModuleNotFoundError: No module named 'integra-setup'
ModuleNotFoundError: No module named 'integra-setup'  Hi, My... 'integra-setup' How to remove the ModuleNotFoundError: No module named 'integra-setup' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'kira-setup'
ModuleNotFoundError: No module named 'kira-setup'  Hi, My Python... 'kira-setup' How to remove the ModuleNotFoundError: No module named 'kira-setup' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'django-deploy-setup'
ModuleNotFoundError: No module named 'django-deploy-setup'  Hi, My... named 'django-deploy-setup' How to remove the ModuleNotFoundError: No module named 'django-deploy-setup' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-initial-setup'
ModuleNotFoundError: No module named 'django-initial-setup'  Hi...: No module named 'django-initial-setup' How to remove the ModuleNotFoundError: No module named 'django-initial-setup' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-initial-setup'
ModuleNotFoundError: No module named 'django-initial-setup'  Hi...: No module named 'django-initial-setup' How to remove the ModuleNotFoundError: No module named 'django-initial-setup' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-project-setup'
ModuleNotFoundError: No module named 'django-project-setup'  Hi...: No module named 'django-project-setup' How to remove the ModuleNotFoundError: No module named 'django-project-setup' error? Thanks   Hi

Ads