Hi all
I hope all are doing well
please help me how to convert CSV to NetCDF. Im trying but its not working
#!/usr/bin/env ipython
import pandas as pd
import numpy as np
import netCDF4
import pandas as pd
import xarray as xr
stn_precip='ts_sept.csv'
orig_precip='ts_sep
PS C:\Users\amanb\OneDrive\Desktop\jarvis> pip install pyttsx3
Collecting pyttsx3
Using cached pyttsx3-2.87-py3-none-any.whl (39 kB)
Collecting comtypes; platform_system == "Windows"
Using cached comtypes-1.1.7.zip (180 kB)
Installing collected packages: comtypes, pyttsx3
Running setup.py i
On Mon, 2019-08-05 at 21:10 +0430, arash kohansal wrote:
> Hello ive just installed python on my pc and ive already check the
> path
> choice part but microsoft visual code can not find it and it does not
> have
> the reload item
Check out: https://code.visualstudio.com/docs/languages/python
or
On 2019-08-05 17:40, arash kohansal wrote:
Hello ive just installed python on my pc and ive already check the path
choice part but microsoft visual code can not find it and it does not have
the reload item
1. Open Visual Studio Code.
2. Press F1, type "Python: Select Interpreter", and then pre
Hello ive just installed python on my pc and ive already check the path
choice part but microsoft visual code can not find it and it does not have
the reload item
--
https://mail.python.org/mailman/listinfo/python-list
We would be glad to help. I can't tell from your question what kind of help
you need so please give us more information.
Have you tried to install python?
If so has the installation succeeded?
What do you mean by "open the programming"?
What have you tried?
What do you expect to see?
--
https
Sent from Mail for Windows 10
--
https://mail.python.org/mailman/listinfo/python-list
> (?s)struct (.+?)\s*\{\s*(.+?)\s*\};
Thank you Vlastimil Brom for regexp and for explanation!
--
https://mail.python.org/mailman/listinfo/python-list
szykc...@gmail.com writes:
> Please help me with this regexp or tell me that I neeed do this in other way.
I think that using regexps to parse those structures is fragile and difficult
to get right[0], as there are lots of corner cases (comments, complex types,
...).
I'd suggest usin
W dniu wtorek, 26 grudnia 2017 21:53:14 UTC+1 użytkownik Lawrence D’Oliveiro
napisał:
> On Wednesday, December 27, 2017 at 2:15:21 AM UTC+13, szyk...@gmail.com wrote:
> > struct (.+)\s*{\s*(.+)\s*};
>
> You realize that “.” matches anything? Whereas I think you want to match
> non-whitespace in
On Tue, 26 Dec 2017 05:14:55 -0800 (PST), szykc...@gmail.com wrote:
[snip]
> So: I develop regexp which to my mind should work, but it doesn't and
> I don't know why. The broken regexp is like this:
> struct (.+)\s*{\s*(.+)\s*};
[snip]
You'll probably get better help faster if you can present you
has two groups: struct name and struct definition.
> It fails even for such simple structure:
> struct Structure
> {
> int mVariable1;
> QString mVariable2;
> bool mVariable3
> };
>
> Please help me with this regexp or tell me that I neeed do this in other
>
The broken regexp is like this:
struct (.+)\s*{\s*(.+)\s*};
As you can see it has two groups: struct name and struct definition.
It fails even for such simple structure:
struct Structure
{
int mVariable1;
QString mVariable2;
bool mVariable3
};
Please help me with this regexp or tell me
here ismy code in python
for i in range(0,60):
driver.execute_script("window.scrollTo(0,
document.body.scrollHeight);")
# i want status code here"
time.sleep(1)
Status of what? Are you asking the HTTP status of the page downloaded?
That has nothing to do with you
hello all,
i am searching how to get status code in selinium (with python), but
unable to find it . can anyone help me in this matter
actually my aim is to scroll a page and after each scroll i want to find the
status so that on bad status i can exit my code.
here ismy code in python
])
> ('Splitting ', [20])
> ('Merging ', [20])
> ('Merging ', [20, 55])
> ('Merging ', [20, 44, 55])
> ('Merging ', [20, 31, 44, 55, 77])
> ('Merging ', [17, 20, 26, 31, 44, 54, 55, 77, 93])
> [17, 20, 26, 31, 44, 54
On Fri, May 31, 2013 at 3:43 PM, Cameron Simpson wrote:
> On 30May2013 21:54, bhk...@gmail.com wrote:
> | One final question, Is there a way to edit the message once it has been
> posted?
>
> Essentially, no. If there's some error in a post, reply to it
> yourself with a correction. Transparency
On 30May2013 21:54, bhk...@gmail.com wrote:
| One final question, Is there a way to edit the message once it has been
posted?
Essentially, no. If there's some error in a post, reply to it
yourself with a correction. Transparency is a good thing. Revisionist
history pretty much is not.
--
Camer
Got It!!!, Finally. Thanks Dave
So, the control goes back to the place after the recursive function is called
once the no. of element is equal to one and starts merging after which it will
again start to split the remaining items.
Thank you Chris for your multiple explanations.
One final q
Got It!!!, Finally. Thanks Dave
So, the control goes back to the place after the recursive function is called
once the no. of element is equal to one and starts merging after which it will
again start to split the remaining items.
Thank you Chris for your multiple explanations. It was also ve
On 05/30/2013 08:42 AM, bhk...@gmail.com wrote:
http://wiki.python.org/moin/GoogleGroupsPython >
In the above output, the control goes to "HERE AFTER SPLIT" after the "Merging"
statement which is of-course the last statement in the function.On what condition this is happening.
Ideally
Thanks Chris, Wolfgang and Joshua for your replies.
In step 2b, all the steps from 1 through 3 are executed again (twice).
Soon, those calls will just output "Splitting" followed by "Merging";
and then we go back to 2c. That's why it *seems* that the code goes
from
On Thu, May 30, 2013 at 10:39 PM, wrote:
> Chris, Can you please let me know what makes the control of the program code
> go to 2c after the output "Merging".
It goes like this:
1. [eight element list]
2a. [eight element list]
2b. 1. [four element list]
2b. 2a. [four element list]
2b.
On Thursday, May 30, 2013 6:09:20 PM UTC+5:30, bhk...@gmail.com wrote:
> Thanks Chris, Wolfgang and Joshua for your replies.
>
>
>
> ---
>
> In step 2b, all the steps from 1 through 3 are executed again (twice).
>
> Soon, those calls will just output "Splitting" followed by "Merging";
>
> a
On Thursday, May 30, 2013 6:09:20 PM UTC+5:30, bhk...@gmail.com wrote:
> Thanks Chris, Wolfgang and Joshua for your replies.
>
>
>
> ---
>
> In step 2b, all the steps from 1 through 3 are executed again (twice).
>
> Soon, those calls will just output "Splitting" followed by "Merging";
>
> a
Thanks Chris, Wolfgang and Joshua for your replies.
---
In step 2b, all the steps from 1 through 3 are executed again (twice).
Soon, those calls will just output "Splitting" followed by "Merging";
and then we go back to 2c. That's why it *seems* that the code goes
from 3 to 2c. You'll notice th
On 30 May 2013 11:19, wrote:
> Also, Can you please let me know how did you found out that I am using Python
> 2 Interpreter.
Do you have access to a Python3 interpreter? If so, try running it and
your output will look like:
Splitting [54, 26, 93, 17, 77, 31, 44, 55, 20]
Splitting [54, 26, 9
On 30 May 2013 10:48, wrote:
> Question:
> -
> Function mergeSort is called only once, but it is getting recursively
> executed after the printing the last statement "print("Merging ",alist)". But
> don't recursion taking place except at these places "mergeSort(lefthalf),
> mergeSort(r
On Thu, May 30, 2013 at 8:19 PM, wrote:
> Thanks for the reply Chris.
>
> I am newbie to python, so please excuse me if I am asking chilly questions.
All questions are welcome!
> Can you please explain more about the following sentence.
> "When it says "Splitting" with a single-element list, it
gmail.com> writes:
>
> Thanks for the reply Chris.
>
> I am newbie to python, so please excuse me if I am asking chilly questions.
>
> Can you please explain more about the following sentence.
> "When it says "Splitting" with a single-element list, it then
> immediately prints "Merging" and
Thanks for the reply Chris.
I am newbie to python, so please excuse me if I am asking chilly questions.
Can you please explain more about the following sentence.
"When it says "Splitting" with a single-element list, it then
immediately prints "Merging" and returns (because all the rest of the
c
gmail.com> writes:
>
>
> Function mergeSort is called only once, but it is getting recursively
executed after the printing the last
> statement "print("Merging ",alist)". But don't recursion taking place
except at these places
> "mergeSort(lefthalf), mergeSort(righthalf)"
>
> Sometimes the func
On Thu, May 30, 2013 at 7:48 PM, wrote:
> Function mergeSort is called only once, but it is getting recursively
> executed after the printing the last statement "print("Merging ",alist)". But
> don't recursion taking place except at these places "mergeSort(lefthalf),
> mergeSort(righthalf)"
>
Code :
-
def mergeSort(alist):
print("Splitting ",alist)
if len(alist)>1:
mid = len(alist)//2
lefthalf = alist[:mid]
righthalf = alist[mid:]
mergeSort(lefthalf)
mergeSort(righthalf)
i=0
j=0
k=0
while ihttp://mail.
Awesome Peter!!!. Thanks a lot for detailed explanation...
--
http://mail.python.org/mailman/listinfo/python-list
Awesome!!! Thanks a lot Peter.
--
http://mail.python.org/mailman/listinfo/python-list
bhk...@gmail.com wrote:
> I am trying to create 2D arrays without using advanced features like
> numpy,
I'd say that using ctypes is a bit more "advanced" than *using* numpy
because with ctypes it helps to know C.
> for this I have created 2 separate modules arrays.py and
> array2D.py. Here's
Thanks Steven for pointing that out. This is my first topic in Google Groups.
So, I did not notice that the previous contents will also be taken in the new
post.
--
http://mail.python.org/mailman/listinfo/python-list
Hi Dylan,
Thank you for the alternative solution. I will look into that.
--
http://mail.python.org/mailman/listinfo/python-list
On Mon, 08 Apr 2013 21:01:04 -0700, bhk755 wrote:
[snip over 260 lines of unnecessary quoted text]
> Hi Dylan,
>
> Thank you for the alternative solution. I will look into that.
Please trim your replies. There's absolutely no reason to expect people
to scroll through almost FOUR PAGES of quot
On Monday, April 8, 2013 3:37:38 PM UTC+5:30, bhk...@gmail.com wrote:
> I am trying to create 2D arrays without using advanced features like numpy,
> for this I have created 2 separate modules arrays.py and array2D.py. Here's
> the code for that:
>
>
>
> arrays.py module:
>
>
On Mon, Apr 8, 2013 at 8:07 PM, wrote:
> I am trying to create 2D arrays without using advanced features like
> numpy, for this I have created 2 separate modules arrays.py and array2D.py.
> Here's the code for that:
>
> arrays.py module:
> ==
> import ctypes
>
> class Array:
>
> #
I am trying to create 2D arrays without using advanced features like numpy, for
this I have created 2 separate modules arrays.py and array2D.py. Here's the
code for that:
arrays.py module:
==
import ctypes
class Array:
#Creates an array with size elements.
def __init__( sel
On Wed, Dec 26, 2012 at 4:21 PM, wrote:
> Thank you very much for your reply. I actually just deleted this post as you
> were replying! I had figured out a few things and then got confused about a
> few others :/ If you have a chance, can you look at the other post? Thank
> you!!
You can'
On 12/26/2012 06:21 PM, bobflipperdoo...@gmail.com wrote:
Thank you very much for your reply. I actually just deleted this post as you
were replying! I had figured out a few things and then got confused about a
few others :/ If you have a chance, can you look at the other post? Thank
you!!
Thank you very much for your reply. I actually just deleted this post as you
were replying! I had figured out a few things and then got confused about a
few others :/ If you have a chance, can you look at the other post? Thank
you!!
--
http://mail.python.org/mailman/listinfo/python-list
ng back to the trivia question. Can somebody please help me with this? I would really appreciate it!
This is the code:
shop_again = 'y'
print("Welcome to the Star Wars Shop!")
customer = eval(input("Is there a customer in line? (1 = yes, 2 = no)> "))
whil
but I'm struggling with the most important
parts :/ I get the total of multiple orders of the same item, but we can't
figure out how to total the entire order - before discounts and shipping - and
then where to put any code referring back to the trivia question. Can somebody
please he
Minh Dang wrote:
>
> can anyone help me?
Chris Angelico has given you some good comments which
should give you a direction to investigate.
This list is a global list and you seem a tad impatient. It is normal
to hear back from a few hours to a day or two.
Even if I wanted to help, without cont
On Thu, Nov 29, 2012 at 8:03 PM, Minh Dang wrote:
> can anyone help me?
Look over my previous posts. I've made several suggestions that you
haven't followed up on.
Also, check out ESR's article on asking questions, which I also linked
you to earlier. Take its advice. You'll help yourself, AND it
can anyone help me?
--
http://mail.python.org/mailman/listinfo/python-list
ok, here is my code, zip
http://www.mediafire.com/?ob4kokda81fj6xc
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, 2012-11-28, Chris Angelico wrote:
> On Wed, Nov 28, 2012 at 1:50 PM, Minh Dang wrote:
>> Hello everybody, i am doing my project: local network chat using python
>> here is my file
>> http://www.mediafire.com/?cc2g9tmsju0ba2m
>
> Hmm. Might I recommend some other means of sharing your code?
there are still these 2 problems and i don't know how to solve it
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, Nov 29, 2012 at 1:10 AM, Minh Dang wrote:
> File "C:\Users\MINH_IT\workspace\project\src\project\client.py", line 60,
> in main
> rQueue, wQueue, xQueue = select.select(inputs, [], [])
> OSError: [WinError 10038] An operation was attempted on something that is not
> a socket
Have
yes, it's run but appear:
in server: Server is ready.
Accepted connection from ('127.0.0.1', 5000)
End connection from ('127.0.0.1', 5000)
after connected, server close.
in client: Connected to server at 127.0.0.1 : 4000
Traceback (most recent call last):
File "C:\Users\MINH_IT\workspace\proje
On Wed, Nov 28, 2012 at 10:57 PM, Minh Dang wrote:
> please help me, after changing broadcast, there are 2 bugs:
> if __name__ == "__main__":
> sys.exit(main())
> and
>
> rQueue, wQueue, xQueue = select.select(inputs, [], [])
> please help me
By "bug"
please help me, after changing broadcast, there are 2 bugs:
if __name__ == "__main__":
sys.exit(main())
and
rQueue, wQueue, xQueue = select.select(inputs, [], [])
please help me
--
http://mail.python.org/mailman/listinfo/python-list
yes, still have 2 bugs:
sys.exit(main())
rQueue, wQueue, xQueue = select.select(inputs, [], [])
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, Nov 28, 2012 at 10:10 PM, Minh Dang wrote:
> ok, in client.py, i change broadcastIP = "broadcast" to broadcastIP =
> "127.0.0.1" but there are some bugs
I doubt that that will work either. And you may need to be a little
clearer on what you mean by "there are some bugs" - is it doing wha
ok, in client.py, i change broadcastIP = "broadcast" to broadcastIP =
"127.0.0.1",it's ok, but there are some bugs
sys.exit(main())
rQueue, wQueue, xQueue = select.select(inputs, [], [])
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, Nov 28, 2012 at 9:52 PM, Minh Dang wrote:
> but, how can I fix it?
I can't say that for sure, but did you read the bit at the end of my
last post beginning "I think you probably want"? Try doing that, see
what happens.
ChrisA
--
http://mail.python.org/mailman/listinfo/python-list
ok, in client.py, i change broadcastIP = "broadcast" to broadcastIP =
"127.0.0.1" but there are some bugs
sys.exit(main())
rQueue, wQueue, xQueue = select.select(inputs, [], [])
--
http://mail.python.org/mailman/listinfo/python-list
but, how can I fix it?
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, Nov 28, 2012 at 4:47 PM, Minh Dang wrote:
> ok, here is my code, zip
> http://www.mediafire.com/?ob4kokda81fj6xc
Thanks! That's a distinct improvement :)
That code doesn't exactly match the traceback, though; there's
client.py not pclient.py and the line numbers don't match. So I have
to
ok, here is my code, zip
http://www.mediafire.com/?ob4kokda81fj6xc
--
http://mail.python.org/mailman/listinfo/python-list
ace\project\src\project\pclient.py", line 79, in
> broadcast
> udpSock.bind((broadcastIP, broadcastPort))
> OSError: [WinError 10049] The requested address is not valid in its context
> Please help me to debud it, thank so much.
What's the broadcastIP address you're using? (As m
On 11/27/2012 9:50 PM, Minh Dang wrote:
Hello everybody, i am doing my project: local network chat using python
here is my file
http://www.mediafire.com/?cc2g9tmsju0ba2m
I am not familiar with .rar files and whether I can open them. Better to
upload a standard .zip.
when i compile client.py
] The requested address is not valid in its context
Please help me to debud it, thank so much.
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
On 02/15/2010 02:20 PM, chiranjeevi muttoju wrote:
Hi,
when i'm installing the pytc(python wrapper for tokyo cabinet.) i'm
getting the fallowing error.. i'm getting this error for python2.6
only.. for python 2.4 its working fine..
-
running inst
gcc' failed with exit status 1
-
What is that error. if any body know please help me.. thank you.
It means the compiler can't find the python2.6 library; it's not in any of the
directories where gcc searches for libraries.
You can specify (ad
gcc' failed with exit status 1
-
What is that error. if any body know please help me.. thank you.
--
http://mail.python.org/mailman/listinfo/python-list
Diez B. Roggisch wrote:
> Sérgio Monteiro Basto schrieb:
>> Diez B. Roggisch wrote:
>>
>> Hi, Thanks,
>>> Sérgio Monteiro Basto wrote:
>>>
Hi,
I am in x86_64 arch , but I need
compile things on 32 bits with
python setup.py build
Can't change the fact that distutils cr
Sérgio Monteiro Basto schrieb:
Diez B. Roggisch wrote:
Hi, Thanks,
Sérgio Monteiro Basto wrote:
Hi,
I am in x86_64 arch , but I need
compile things on 32 bits with
python setup.py build
Can't change the fact that distutils creates x86_64
directories:
build/temp.linux-x86_64-2.3/
Also if I t
Diez B. Roggisch wrote:
Hi, Thanks,
> Sérgio Monteiro Basto wrote:
>
>> Hi,
>> I am in x86_64 arch , but I need
>> compile things on 32 bits with
>> python setup.py build
>>
>> Can't change the fact that distutils creates x86_64
>> directories:
>> build/temp.linux-x86_64-2.3/
>>
>> Also if I tr
Sérgio Monteiro Basto wrote:
> Hi,
> I am in x86_64 arch , but I need
> compile things on 32 bits with
> python setup.py build
>
> Can't change the fact that distutils creates x86_64
> directories:
> build/temp.linux-x86_64-2.3/
>
> Also if I try with a python compile in 32bits and installed
> i
Hi,
I am in x86_64 arch , but I need
compile things on 32 bits with
python setup.py build
Can't change the fact that distutils creates x86_64
directories:
build/temp.linux-x86_64-2.3/
Also if I try with a python compile in 32bits and installed
in system .
how I force distutils build to 32-bi
On Apr 21, 3:20 pm, Phillip B Oldham wrote:
> I'm having trouble grok'ing how to get python talking through a
> webserver. I've got a lot of experience working with nginx+php-fcgi
> (via a unix socket) and I'd like to know what would be the bare
> minimum to get python talking in the same way.
>
>
I'm having trouble grok'ing how to get python talking through a
webserver. I've got a lot of experience working with nginx+php-fcgi
(via a unix socket) and I'd like to know what would be the bare
minimum to get python talking in the same way.
Now, I've looked at modules like CherryPy but they're a
I want to connect to a Windows machine in my network , using ssh, I use
paramiko but I have problem in authentication, would you please help me?
1- I have installed freeSSHD in server machine? Is it necessery ? or may I
have to install another program?
2- I have entered server's Ip inst
On Sep 11, 8:04 pm, Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> On Sep 11, 5:40 pm, "Giampaolo Rodola'" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
> > I'm trying to implement a function which returns whether a path is a
> > subpath of another one (e.g. /a/b/c is a subpath of /a/b).
> > I wrote this
Daniel Fetchinson a écrit :
Thanking you,
Ms. Vaidehi Pawar
How much do you pay?
How much do you ask for
cheers
Ms. Vaidehi
I was just kidding. But if you seriously need people to do this kind
of job it's better to post the amount you are willing to pay otherwise
nobody will take it
>
> I find it impossible to take anyone asking others to do their school
> work for them seriously no matter how or what they are willing to pay.
>
Exactly, and writing the subject of the post in all capitals doesn't help
either...
Almar
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, Sep 11, 2008 at 12:02 PM, Daniel Fetchinson
<[EMAIL PROTECTED]> wrote:
>
>
>>> Thanking you,
>>>
>>> Ms. Vaidehi Pawar
>>
>> How much do you pay?
>>
>>> How much do you ask for
>>>
>>> cheers
>>> Ms. Vaidehi
>
> I was just kidding. But if you seriously need people to do this kind
> of
>> Thanking you,
>>
>> Ms. Vaidehi Pawar
>
> How much do you pay?
>
>> How much do you ask for
>>
>> cheers
>> Ms. Vaidehi
I was just kidding. But if you seriously need people to do this kind
of job it's better to post the amount you are willing to pay otherwise
nobody will take it seriously
Diez B. Roggisch wrote:
Any reason why
os.path.normpath(a).startswith(os.normpath(b)) doesn't do the trick?
Except for the trivial type, you mean? That depends on whether "c:\foo"
should be seen as a subpath to "c:\foobar" or not. I'd probably go for
(also untested):
def issubpath(a, b)
Giampaolo Rodola' schrieb:
Hi,
I'm trying to implement a function which returns whether a path is a
subpath of another one (e.g. /a/b/c is a subpath of /a/b).
I wrote this function which apparently seems to work fine:
import os
def issubpath(path1, path2):
"""Return True if path1 is a sub p
On Sep 11, 5:40 pm, "Giampaolo Rodola'" <[EMAIL PROTECTED]> wrote:
> Hi,
> I'm trying to implement a function which returns whether a path is a
> subpath of another one (e.g. /a/b/c is a subpath of /a/b).
> I wrote this function which apparently seems to work fine:
>
> import os
>
> def issubpath(p
Hi,
I'm trying to implement a function which returns whether a path is a
subpath of another one (e.g. /a/b/c is a subpath of /a/b).
I wrote this function which apparently seems to work fine:
import os
def issubpath(path1, path2):
"""Return True if path1 is a sub path of path2."""
if path1
On Sep 10, 3:33 pm, "Daniel Fetchinson" <[EMAIL PROTECTED]>
wrote:
> > I know I'm to late to ask you for helpbut please help me out..I
> > am really new to unix and dont know how to finish this assignment on
> > time.proff. said he will be using
> I know I'm to late to ask you for helpbut please help me out..I
> am really new to unix and dont know how to finish this assignment on
> time.proff. said he will be using MOSS to detect whether I
> downloaded the code..please help me..
>
> email me : [EMAIL PR
I know I'm to late to ask you for help....but please help me out..I
am really new to unix and dont know how to finish this assignment on
time.proff. said he will be using MOSS to detect whether I
downloaded the code..please help me..
email me : [EMAIL PROTECTED]
Assignment 1
Proc
On May 1, 11:41 am, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote:
> > Martin, could you please tell me how to do this, I am pretty new in
> > Solaris.
>
> It's fairly complicated, so I'm not sure I can give you the full
> tutorial in a Usenet message.
>
> In essence, you need to spot the linker line
> Martin, could you please tell me how to do this, I am pretty new in
> Solaris.
It's fairly complicated, so I'm not sure I can give you the full
tutorial in a Usenet message.
In essence, you need to spot the linker line in the build process,
(e.g. by the -o option to the compiler), and add -lm t
On May 1, 10:30 am, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote:
> > lib/python/site-packages/psycopg2/_psycopg.so: symbol round:
> > referenced symbol not found
>
> You need to link _psycopg.so with the math library, -lm.
>
> Regards,
> Martin
Martin, could you please tell me how to do this, I am
On May 1, 10:17 am, Ralf Schönian <[EMAIL PROTECTED]> wrote:
> idev schrieb:
>
>
>
> > Hi all,
> > Please help me with my stuff.
>
> > I downloaded python 2.5.1 package fromhttp://blastwave.orgit was
> > compiled using Sun Studio 11 for Solaris 8 spa
> lib/python/site-packages/psycopg2/_psycopg.so: symbol round:
> referenced symbol not found
You need to link _psycopg.so with the math library, -lm.
Regards,
Martin
--
http://mail.python.org/mailman/listinfo/python-list
idev schrieb:
Hi all,
Please help me with my stuff.
I downloaded python 2.5.1 package from http://blastwave.org it was
compiled using Sun Studio 11 for Solaris 8 sparc.
My system is Solaris 10 sparc and I compiled using SunStudio 11
psycopg2 python binding for PostgreSQL 8.3.1.
Compilation
Hi all,
Please help me with my stuff.
I downloaded python 2.5.1 package from http://blastwave.org it was
compiled using Sun Studio 11 for Solaris 8 sparc.
My system is Solaris 10 sparc and I compiled using SunStudio 11
psycopg2 python binding for PostgreSQL 8.3.1.
Compilation was OK, but when I
Jean-Francois Canac wrote:
8< -- duplicate request ---
see other answer.
- Hendrik
--
http://mail.python.org/mailman/listinfo/python-list
1 - 100 of 124 matches
Mail list logo