Check required modules using autotools

2016-08-16 Thread Rudra Banerjee
Hi, I am compiling a python3 project using gnu-autotools. This is my configure.ac file (Please ignore the recursive Makefile, I have not managed to make the non-recursive one). AC_INIT([mkbib], [0.1],[],[mkbib]) AM_INIT_AUTOMAKE([1.9.6 dist-bzip2 subdir-objects]) AM_PATH_PYTHON([3.0]) dnl AX_PYTH

Re: compile a python3 project with autotools

2016-08-14 Thread Rudra Banerjee
On Monday, August 15, 2016 at 12:39:33 AM UTC+2, Lawrence D’Oliveiro wrote: > On Monday, August 15, 2016 at 9:24:04 AM UTC+12, Rudra Banerjee wrote: > > but while running the application, I am getting error: > > (mkbib:14843): Gtk-CRITICAL **: New application windows must be adde

Re: compile a python3 project with autotools

2016-08-14 Thread Rudra Banerjee
Plz ignore src/Mkbib/mkbib.in file, as appeared in the tree -- https://mail.python.org/mailman/listinfo/python-list

compile a python3 project with autotools

2016-08-14 Thread bnrj . rudra
Hi, I am trying to compile a python project using autotools. The project runs absolutely fine from command line, and it uses Gtk3 library. the src file is: ├── src │   ├── Makefile.am │   ├── Makefile.in │   ├── Mkbib │   │   ├── cell.py │   │   ├── dialogue.py │   │   ├── filemanager.py │   │

awk like usage in python

2012-11-09 Thread Rudra Banerjee
Friends, I am in process learning python. I basically use shell scripts for text formatting and trying my hand on python. where I am fighting is awk's functionality in python. Say, one of my real tiny code looks like: #!/bin/bash TMP=store for i in $1/MnBi_EOS_* do # echo $i grep -A 15 "T(est)"

suitability of python

2011-11-24 Thread Rudra Banerjee
Dear friends, I am a newbie in python and basically i use python for postprocessing like plotting, data manipulation etc. Based on ease of programming on python I am wondering if I can consider it for the main development as well. My jobs (written on fortran) runs for weeks and quite CPU intensive.

Re: load and plot from multiple file

2010-07-10 Thread rudra
On Jul 10, 1:13 pm, Tim Harig wrote: > It would really help to see a representative sample of the data that you > are working with and what you want the plot to look like. The data looks something like that: 0.70711 -2.57266 1.0 0.16694 1.22474 -0.15287 1.41421 0.28025 1.58114 -0.03806 1.7320

load and plot from multiple file

2010-07-10 Thread rudra
Dear friends, I have several 2 column file which i need to plot in one figure. I generally do it using gnuplot, but when there is several files, its hard to do manually. can you tell me how i can load a file in python and plot several file in one figure(as it is done via replot in gnuplot)? I am

vpython installation problem

2009-11-26 Thread rudra
lude/config.h config.status: include/config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands but make fails: $ make Making all in site-packages/visual make[1]: Entering directory `/home/rudra/visual-5.13_release/site- packages/visual' make[1]: Noth

Re: plotting arrow in python

2009-11-22 Thread rudra
On Nov 22, 6:58 am, Gregory Ewing wrote: > > rudra wrote: > > >> 0.0 0.0 0.1 > >> 0.0 0.1 0.1 > >> 0.1 0.0 0.5 > > >> like that! the first two column are coordinate and 3rd one is > >> magnitude of moment (say: x y,m)!! so what i want to do

plotting arrow in python

2009-11-21 Thread rudra
Dear friends, I am very new in python. Actually, I think I will not do much python then using it to plotting data. I have not done any "real" thing in python, so plz be easy. Now , the problem I have a data set: 0.0 0.0 0.1 0.0 0.1 0.1 0.1 0.0 0.5 like that! the first two column are coordinate and