Re: Python 3.12.1, Windows 11: shebang line #!/usr/bin/env python3 doesn't work any more

2023-12-22 Thread J.O. Aho via Python-list
On 22/12/2023 13.36, Sibylle Koczian wrote: Hello, I always install Python on Windows in the same manner: - Python is not on the path, - it is installed for all users, - the Python Launcher is installed for all users, - the file types .py, .pyw etc. are associated with Python. My shebang line

Re: Installation does not work fro GitBash command line

2022-08-24 Thread J.O. Aho
On 23/08/2022 13.00, Gladstone Rose wrote: Why is my installation of Python does not work at the command line for git bash. I get the following message bash: python3: command not found It can be that you need to use python.exe instead of python3.exe, see my work computers response when

Re: XLRDError: Unsupported format, or corrupt file: Expected BOF record; found b'\r\n\r\n\r\n\r\n'

2021-09-29 Thread J.O. Aho
On 29/09/2021 13.10, hongy...@gmail.com wrote: On Wednesday, September 29, 2021 at 5:40:58 PM UTC+8, J.O. Aho wrote: On 29/09/2021 10.22, hongy...@gmail.com wrote: I tried to convert a xls file into csv with the following command, but failed: $ in2csv --sheet 'Sheet1' 2021-2022-1.xls

Re: XLRDError: Unsupported format, or corrupt file: Expected BOF record; found b'\r\n\r\n\r\n\r\n'

2021-09-29 Thread J.O. Aho
On 29/09/2021 10.22, hongy...@gmail.com wrote: I tried to convert a xls file into csv with the following command, but failed: $ in2csv --sheet 'Sheet1' 2021-2022-1.xls XLRDError: Unsupported format, or corrupt file: Expected BOF record; found b'\r\n\r\n\r\n\r\n' The above testing file is

Re: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread J.O. Aho
On 07/02/2021 15.06, Kr4ck ALI wrote: Hello, I have to migrate multiple mailbox (emails, contacts, calendar, tasks) from thunderbird to outlook Office 365. I'm sorry to hear that. I plan to export all items from thunderbird files (.mbox for email, .sqlite or .sdb for calendar, .mab to

Re: Convert MBOX thunderbird to PST outlook

2021-02-08 Thread J.O. Aho
On 08/02/2021 10.22, Paul Rubin wrote: "J.O. Aho" writes: I think most migrated to use IMAP like 30 years ago That handles email but not calendar or the other stuff. I think there are starting to be standards for that, but no idea whether either Thunderbird or Outlook follows t

Re: Error 0xc000007b on opening python

2020-10-02 Thread J.O. Aho
On 02/10/2020 12:15, Nipur Gupta wrote: I've downloaded python 3.6.0 64 bits but whenever I try to open idle, it doesn't open and displays error 0xc07b. I've tried everything from reinstalling to updating windows and visual c++ but it's still the same. There seems to be quite many things

Re: Spectre/Meltdown bug affecting Python ?

2018-01-06 Thread J.O. Aho
On 01/06/18 13:43, Etienne Robillard wrote: > My understanding of this vulnerability is that speculative indirect > calls in Linux kernel can be used to extract/filter memory content via > side-channels. Not just Linux, but all other OS:es, Microsoft and Apple been patching in secret as they have

Re: I hope Python can run in my windows phone

2013-12-25 Thread J.O. Aho
On 25/12/13 15:08, 1011.0011 wrote: I can't compiling myself, and I see Python can run in iphone and android phone. And I feel little unfair. I would suggest you get yourself a Jolla Mobile with SailfishOS, comes with python preinstalled. See shop.jolla.com Should soon be for sale in main

Re: Installing Python on CentOS 6 - a big pain

2012-01-18 Thread J.O. Aho
John Nagle wrote: It turns out that installing Python 2.7.2 on CentOS 6.0 is a lot of work. Here are the official CentOS install instructions: http://www.centos.org/modules/newbb/viewtopic.php?topic_id=34515forum=41 Don't see any official about the post, it's just another forum member who

Re: can I distribute Microsoft.VC90.CRT files?

2011-06-27 Thread J.O. Aho
miamia wrote: hello, I find out that my program needs Microsoft.VC90.CRT.manifest,msvcm90.dll,msvcp90.dll,msvcr90.dll files when I want to run it on win 64bit systems. I find these files in some other software. Can I simply take it from another software then include it to my program

Re: Want to build an app for linux

2011-06-24 Thread J.O. Aho
Adam Tauno Williams wrote: On Fri, 2011-06-24 at 15:55 +0530, saurabh verma wrote: Hi all , May be I'm just asking a silly/old question . I have some open web APIs which i can use , on it I want to develop an desktop application , probably cross platform but mostly I'm aiming at *unix

Re: Want to build an app for linux

2011-06-24 Thread J.O. Aho
saurabh verma wrote: Quick question : Is creating jazzy UI feasible with python + gtk ? like round shaped corners , color schemes etc etc. Button shapes and colors are generally done in themes and luckily people using QT/gtk2 are allowed to change themes themselves which makes that the apps

Re: install excel xlwt in ubuntu 9

2011-03-19 Thread J.O. Aho
ratna PB wrote: Hey friends i tried a lot to install excel xlwt in ubuntu 9 but failed please help me before i get full fraustrated... sudo apt-get install python-xlwt -- //Aho -- http://mail.python.org/mailman/listinfo/python-list

Re: CentOS 5.5 x86_64 rpmbuild from source

2011-03-08 Thread J.O. Aho
William S. wrote: I will answer myself. For those interested, because rpm will break the dependencies on the OS, you can install 2.7 with a simple bash script: http://willsani.com/2011/03/02/centos-5-5-x86_64-install-python-2-7/ If you use a spec file for the original RPM and modify it for

Re: How suitable is Python to write system utilities?

2011-01-06 Thread J.O. Aho
Alice Bevan–McGregor wrote: On 2011-01-06 01:35:58 -0800, Rohit Coder said: Is Python suitable to write low-level system utilities like Defrag, Malware Removal Tools and Drivers? Yes and no. Also, file fragmentation is a non-issue on all modern filesystems (ext3/4, reiser, ntfs, hfs+,

Re: How suitable is Python to write system utilities?

2011-01-06 Thread J.O. Aho
Roy Smith wrote: In article 8oloo6f56...@mid.individual.net, J.O. Aho u...@example.net wrote: According to microsoft documentation, the recommendation is to run defragmentation on ntfs on a regular bases. There seems to come some improvement on the mft fragmentation, but still it feels

Re: Can 32-bit and 64-bit Python coexist in the same computer?

2010-10-26 Thread J.O. Aho
Andy wrote: Hi guys! I got a new laptop computer which came with the 64-bit version of Windows 7. I installed the 64-bit versions of Python and a few other libraries and wrote a few Python programs right there. If I copy the Python scripts to a 32-bit computer, it runs flawlessly. But in

Re: develop for Windows on GNU/Linux, using Python

2010-09-19 Thread J.O. Aho
Kev Dwyer wrote: On Sun, 19 Sep 2010 12:55:43 -0500, Default User wrote: Consider: Can someone do development of programs for use on Windows systems, but developed totally on a GNU/Linux system, using standard, contemporary 32 and / or 64-bit PC hardware? This would be for someone who

Re: GUibuilder evaluation

2010-09-06 Thread J.O. Aho
Niklasro wrote: Hello Making a GUI, could you recommend tkinter or any other proposal? QT Designer from Nokia, I can run my GUI programs both on my desktop and on my cellphone without modifications. -- //Aho -- http://mail.python.org/mailman/listinfo/python-list

Re: most popular gui framework for python

2010-08-11 Thread J.O. Aho
Back9 wrote: Does anyone know of what is the most popular gui framework for python application? Don't think it's the most popular, but I think it may be the one which works for quite a lot of different platforms, PyQt, works fine on my desktop as cellphone. -- //Aho --

Re: client to upload big files via https and get progress info

2010-05-13 Thread J.O. Aho
News123 news1...@free.fr wrote: What do others do for huge file uploads The uploader might be connected via ethernet, WLAN, UMTS, EDGE, GPRS. ) Those cases where I have had to move big files it's been scp on those cases where you just have to push a new file, in cases where it's a question of

Re: Python - why don't this script work?

2007-10-22 Thread J.O. Aho
Ohmster wrote: Here is my output when I try to run it on my Fedora 6 machine: [EMAIL PROTECTED] bench]$ image-harvester.py http://public.fotki.com/DaGennelman/ /home/ohmster/scripts/image-harvester.py: line 59: from: command not found Check line 59 in the python script and you see which