Re: NILEARN - WHY THIS CODE THROWS AN ERROR?????

2022-07-08 Thread Chris Angelico
On Sat, 9 Jul 2022 at 10:57, MRAB wrote: > > On 08/07/2022 23:20, Avi Gross via Python-list wrote: > > Nati Stern has asked several questions here, often about relatively > > technical uses of python code that many of us have never used and still is > > not providing more exact info that tends t

Re: NILEARN - WHY THIS CODE THROWS AN ERROR?????

2022-07-08 Thread MRAB
On 08/07/2022 23:20, Avi Gross via Python-list wrote: Nati Stern has asked several questions here, often about relatively technical uses of python code that many of us have never used and still is not providing more exact info that tends to be needed before anyone can even think of diagnosing

Re: TENGO PROBLEMAS AL INSTALAR PYTHON

2022-07-08 Thread Martin Di Paola
On Fri, Jul 08, 2022 at 04:15:35PM -0600, Mats Wichmann wrote: In addition... there is no "Python 10.0" ... Mmm, perhaps that's the problem :D @Angie Odette Lima Banguera, vamos a necesitar algun traceback o algo para guiarte. Podes tambien buscar en internet (youtube) q hay varios tutori

Re: NILEARN - WHY THIS CODE THROWS AN ERROR?????

2022-07-08 Thread Avi Gross via Python-list
Nati Stern has asked several questions here, often about relatively technical uses of python code that many of us have never used and still is not providing more exact info that tends to be needed before anyone can even think of diagnosing the problem. I have learned to stay away from some such

Re: TENGO PROBLEMAS AL INSTALAR PYTHON

2022-07-08 Thread Mats Wichmann
On 7/8/22 14:15, Igor Korot wrote: > Hi, > > On Fri, Jul 8, 2022 at 2:54 PM ANGIE ODETTE LIMA BANGUERA > wrote: >> >> buenos dias necesito ayuda, tengo problemas al momento de instalar python >> 10.0 en la aplicación de visual studio code > > Can you please describe what the problem is? > Which

Re: NILEARN - WHY THIS CODE THROWS AN ERROR?????

2022-07-08 Thread MRAB
On 08/07/2022 14:06, נתי שטרן wrote: fullcode: import nilearn.plotting as plot import os,gzip,io import nibabel as nib path="C:/users/administrator/desktop/nii" path2="C:/users/administrator/desktop/nii/out/" for i in os.listdir(path): if(".nii.gz" in i): pass else:

Re: TENGO PROBLEMAS AL INSTALAR PYTHON

2022-07-08 Thread Igor Korot
Hi, On Fri, Jul 8, 2022 at 2:54 PM ANGIE ODETTE LIMA BANGUERA wrote: > > buenos dias necesito ayuda, tengo problemas al momento de instalar python > 10.0 en la aplicación de visual studio code Can you please describe what the problem is? Which python are you trying to install? Where did you get

NILEARN - WHY THIS CODE THROWS AN ERROR?????

2022-07-08 Thread נתי שטרן
fullcode: import nilearn.plotting as plot import os,gzip,io import nibabel as nib path="C:/users/administrator/desktop/nii" path2="C:/users/administrator/desktop/nii/out/" for i in os.listdir(path): if(".nii.gz" in i): pass else: if(".nii" in i): img = nib.lo

TENGO PROBLEMAS AL INSTALAR PYTHON

2022-07-08 Thread ANGIE ODETTE LIMA BANGUERA
buenos dias necesito ayuda, tengo problemas al momento de instalar python 10.0 en la aplicación de visual studio code -- https://mail.python.org/mailman/listinfo/python-list

Re: Python 3.9 pidfd_open

2022-07-08 Thread Barry Scott
> On 5 Jul 2022, at 19:47, Weatherby,Gerard wrote: > > python introduced os.pidfd_open(), which works as documented. > > My development environment, PyCharm, complains about it being undefined. > > Should it be in > https://raw.githubusercontent.com/python/cpython/3.9/Lib/os.py ? When face