ENHANCE-PET / FALCON

FALCON is a Python-based software application designed to facilitate PET motion correction, both for head and total-body scans. Our program is built around the fast 'greedy' registration toolkit, which serves as the registration engine. With FALCON, users can enjoy a streamlined experience for implementing motion correction.
GNU General Public License v3.0
36 stars 6 forks source link

Using FALCON on a PC with Spanish language #51

Closed mnamias closed 6 months ago

mnamias commented 6 months ago

Hi there!

In order to make FALCON work on my Spanish Windows PC, I had to modify the following line:

falconz_env/lib/site-packages/falconz/file_utilities.py

if system_type == "windows":
    subprocess.check_call(["icacls", file_path, "/grant", "Everyone:(F)"])

Change "Everyone" to "Todos":

if system_type == "windows":
    subprocess.check_call(["icacls", file_path, "/grant", "Todos:(F)"])

Best, Mauro

LalithShiyam commented 6 months ago

Hi Mauro, Gracias :D! I will keep this open ;)! cheers, lalith

LalithShiyam commented 6 months ago

I am closing this, because it seems to be a niche and I will add this in faq! Thanks again @mnamias for your patch!