for anyone with this error popping up: "cannot be loaded because running scripts is disabled on this system" just copy this "Set-ExecutionPolicy RemoteSigned" then type "Y" when needed. After that you can continue with the video. Idk if its a common error or not but just in case. Thxs for the video
So a few things. 1. You do NOT need to run powershell as administrator. Nothing about this requires administrator privileges. You only need that if you're modifying something you don't normally have access to, which in Python's case, should not be a problem. You also don't even need to use powershell. You can use Command Prompt, create the environment with the exact same commands, and activate the environment with ".\envlute\Scripts\activate.bat", which by the way does not require you enter a custom command to make it work. It should just work 2. You're making this harder than it needs to be for the users to launch Lute. All you need to launch it once it's installed is to create a batch file by opening notepad and entering the following stuff into it (replacing with the path you copied earlier): cd start .\envlute\Scripts\python.exe -m lute.main pause Then save it as something like start-lute.bat (be sure you select the type "all files" as by default notepad will try to save as a text file). For those curious what these lines are for, I will explain. The first is to enter the folder you created for Lute. The second is to start python in the python environment you created with the lute module. Finally the last is telling Command Prompt to not automatically close once Lute exits. I recommend keeping this line as if Lute has an issue, you'll be able to actually see what the error was instead of it closing immediately after
You did a great job with this tutorial. I have never opened Powershell in my life. Installing a program through a command prompt was basically magic to me. Thank you for the clear explanation.
when I type "python -m venv envlute" I get a message saying python cannot be found, even though I have it installed. Does anyone have an idea of how I could fix this problem?
Super video as always, thank very much Isán! I hope this gives people the courage to try installing. 🙂 Installation is painless for some, but for some Windows people it's tough. I'm not sure what version of Windows you're using ... a Windows 10 user put together notes which are also in the manual, in the installation section. If your (super-clear) instructions don't work for people, then perhaps a combination of that with the Win 10 notes people can work through it. Thank you again, cheers and best wishes!
Hey if you get something along the line of Cannot be loaded because running scripts is disabled on this system; set-executionpolicy remotesigned ; and there you go I was wondering how to do this and was wandering settings like a dumbass.
Hello dear friend. Thank you for all the content you post here. Would you know if it is possible to install this on a cellphone? Or there is an alternative app that works on Android?
I followed all the steps, but when i tried to launch this message showed up: ERROR: Could not find a version that satisfies the requirement Lute1 (from versions: none) ERROR: No matching distribution found for Lute1 I'm completely ignorant in this kind of computer knowlegde lol. Anyone has an idea on how to solve this?
I am getting this error after -m venv envlute command. how to fix this? -m : The term '-m' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + -m venv envlute + ~~ + CategoryInfo : ObjectNotFound: (-m:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
Hi! I'm not sure why that might be, but you can jump onto the Discord server in the description of the video and we might be able to help you out more!
Haha I'm sorry! It was hard for me too but I tried to simplify it as much as possible. I'm really good at following step-by-step instructions in text form, so maybe the Notion page in the description is easier to follow! (maybe not lol)
After the updating of Windows 11 on my laptop, Lute stopped working altogether. It doesn't run with PowerShell any more and, when I try to do it, the PowerShell collapses and closes. I don't know how to change this. I think it might have happened, because alongside the update the path to Lute was also uploaded to OneDrive, but I cannot find a way to alter the path as well :(
Hi! I've never used Windows 11 or OneDrive, but if you can find where Lute is installed (even in the cloud), you should be able to extract one of the backups in that folder and do a clean install of Lute, then restore your data from the backup. There's some info on how to do this in the manual and in the written tutorial in the description of this video. Let me know if you need help!
when I'm typing: "python -m lute.main" this appears: "Error while finding module specification for 'lute.main' (ModuleNotFoundError: __path__ attribute not found on 'lute' while trying to find 'lute.main'). Anybody can help?
Can someone help me? I was able to create a .bat file and then a shortcut of it. The only problem is: I can't attach the file to the task bar or anywhere that isn't the desktop :(
Just want to add it to the Start Menu, then try moving your shortcut of the .bat file to this folder "C:\ProgramData\Microsoft\Windows\Start Menu\Programs" Also want to be able to pin to taskbar, then you need to 1) right-click the shortcut of the .bat file, 2) click on properties and then 3) prepend the "Target" with this: "cmd /c " Now when you right-click the shortcut it will give you the option to pin to taskbar. You can also go back into properties and customize the icon!
@@SATYEN_ thanks man, that's exactly what I wanted to do! I don't use the desktop because it clutters to often, so I just pin everything to the start menu. Thanks again!
Can you tell me more about what error you're getting? Otherwise you can always jump onto the Discord server and people will probably be able to help you better than I can!
@@is4ndroide Hello, I just installed exactly as you taught and it worked, but after updating to version 3.13 the program doesn't work anymore, on the screen it says "initializing app" and just says that, I waited almost half an hour and nothing appears besides the initializing message. Thanks for the help.
I downloaded another version of Python (3.12), deleted the entire file of the Lute and went through the installation process again, now it seems to be working fine. Thanks again for the help.
I'm not sure what you mean. Lute supports all kinds of dictionaries. I personally use dict.cc and Wiktionary for German, but I know many others work as well. You can change the default dictionaries in the settings for each language. If you need help with this, check out the manual or let me or the guys on the Discord server know!
@@dylanalliata4809 Hey there, sorry about that! (I wrote Lute) -- some dictionaries can't be embedded. There's a link in the manual about how to set up dictionaries as "pop-up" windows.
for anyone with this error popping up: "cannot be loaded because running scripts is disabled on this system" just copy this "Set-ExecutionPolicy RemoteSigned" then type "Y" when needed. After that you can continue with the video. Idk if its a common error or not but just in case. Thxs for the video
really thank you
thanks
Thanks a lot!! Greetings from Germany.
can you disable the set-execution policy after downloading lute or will that mess with lute?
I can't do it with this advice either. I can't download LUte at all. Why are there always problems...
So a few things.
1. You do NOT need to run powershell as administrator. Nothing about this requires administrator privileges. You only need that if you're modifying something you don't normally have access to, which in Python's case, should not be a problem. You also don't even need to use powershell. You can use Command Prompt, create the environment with the exact same commands, and activate the environment with ".\envlute\Scripts\activate.bat", which by the way does not require you enter a custom command to make it work. It should just work
2. You're making this harder than it needs to be for the users to launch Lute. All you need to launch it once it's installed is to create a batch file by opening notepad and entering the following stuff into it (replacing with the path you copied earlier):
cd
start .\envlute\Scripts\python.exe -m lute.main
pause
Then save it as something like start-lute.bat (be sure you select the type "all files" as by default notepad will try to save as a text file). For those curious what these lines are for, I will explain. The first is to enter the folder you created for Lute. The second is to start python in the python environment you created with the lute module. Finally the last is telling Command Prompt to not automatically close once Lute exits. I recommend keeping this line as if Lute has an issue, you'll be able to actually see what the error was instead of it closing immediately after
thxxx❤
You did a great job with this tutorial. I have never opened Powershell in my life. Installing a program through a command prompt was basically magic to me. Thank you for the clear explanation.
You're welcome! Honestly, I didn't know that was possible either before this 😅 Glad it was useful.
Holy cow. I saw your video yesterday and decided to look on the web for a tutorial, hahaha. Turns out you just released one.
THANK YOU so much!! I just learned about Lute yesterday and couldn't get it working and then BOOM you upload this.
Glad I could help! :)
Great video! Im excited to use Lute for Japanese! Once I have played with it I will make a video on my experience
Great! If you want, let me know when you upload it! :)
Gracias parcero, tienes un nuevo suscriptor. Llevo meses intentando instalar Lute
when I type "python -m venv envlute" I get a message saying python cannot be found, even though I have it installed. Does anyone have an idea of how I could fix this problem?
Excellent video mate! 👍😃
Thanks for watching!
Amazing, ill attempt this again later today.
Thank you
Super video as always, thank very much Isán! I hope this gives people the courage to try installing. 🙂 Installation is painless for some, but for some Windows people it's tough.
I'm not sure what version of Windows you're using ... a Windows 10 user put together notes which are also in the manual, in the installation section. If your (super-clear) instructions don't work for people, then perhaps a combination of that with the Win 10 notes people can work through it.
Thank you again, cheers and best wishes!
Great explanation, thanks a lot
Hey if you get something along the line of Cannot be loaded because running scripts is disabled on this system; set-executionpolicy remotesigned ; and there you go I was wondering how to do this and was wandering settings like a dumbass.
thank you!! this helped me haha i know nothing about this system thingy
Thank you so much :)
Hello dear friend. Thank you for all the content you post here.
Would you know if it is possible to install this on a cellphone? Or there is an alternative app that works on Android?
I followed all the steps, but when i tried to launch this message showed up:
ERROR: Could not find a version that satisfies the requirement Lute1 (from versions: none)
ERROR: No matching distribution found for Lute1
I'm completely ignorant in this kind of computer knowlegde lol. Anyone has an idea on how to solve this?
It’s lute3 for pip installs. :-) check the manual. Cheers!
I am getting this error after -m venv envlute command.
how to fix this?
-m : The term '-m' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ -m venv envlute
+ ~~
+ CategoryInfo : ObjectNotFound: (-m:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Thank you so much!
Hi, can I ask why "envlute" doesn't display "green" >< Sorry but this is the first time I use python and download in this way. Can you help me >
Hi! I'm not sure why that might be, but you can jump onto the Discord server in the description of the video and we might be able to help you out more!
I already did it. Let's goooooooooooo
Is there anyway to access LUTE from an iPhone?
how do you add seperable verbs in german what do you do? make them parents or something?
Really easy tutorial, everything worked just fine here. Vielen Dank.
Anyone know what to do if it says "Python was not found"?
Thanks for this great video!! However, I disagree 100% with the use of the word "simply" during this tutorial lol
Haha I'm sorry! It was hard for me too but I tried to simplify it as much as possible. I'm really good at following step-by-step instructions in text form, so maybe the Notion page in the description is easier to follow! (maybe not lol)
Im guessing that you can create a shortcut to upgrade it like the shortcut for starting it in powershell right? if so thats cool
Correct! You could do that too by changing the lines in the file a little :)
@@is4ndroide oh ok I’m not that good at doing that sorta stuff so I’m just going to do that shortcut
Dank schon! ich lerne Deustch.
After the updating of Windows 11 on my laptop, Lute stopped working altogether. It doesn't run with PowerShell any more and, when I try to do it, the PowerShell collapses and closes. I don't know how to change this. I think it might have happened, because alongside the update the path to Lute was also uploaded to OneDrive, but I cannot find a way to alter the path as well :(
Hi! I've never used Windows 11 or OneDrive, but if you can find where Lute is installed (even in the cloud), you should be able to extract one of the backups in that folder and do a clean install of Lute, then restore your data from the backup.
There's some info on how to do this in the manual and in the written tutorial in the description of this video. Let me know if you need help!
@@is4ndroide Thank you very much for the tips! I'll try to do as you said and see whether it works. I'll let you know if it goes smoothly! ;)
when I'm typing: "python -m lute.main" this appears: "Error while finding module specification for 'lute.main' (ModuleNotFoundError: __path__ attribute not found on 'lute' while trying to find 'lute.main'). Anybody can help?
Also getting this error
you can probably make a script that launches lute from like a desktop icon
I actually do that in the video 😅
Can someone help me? I was able to create a .bat file and then a shortcut of it. The only problem is:
I can't attach the file to the task bar or anywhere that isn't the desktop :(
Just want to add it to the Start Menu, then try moving your shortcut of the .bat file to this folder "C:\ProgramData\Microsoft\Windows\Start Menu\Programs"
Also want to be able to pin to taskbar, then you need to 1) right-click the shortcut of the .bat file, 2) click on properties and then 3) prepend the "Target" with this: "cmd /c "
Now when you right-click the shortcut it will give you the option to pin to taskbar. You can also go back into properties and customize the icon!
@@SATYEN_ thanks man, that's exactly what I wanted to do!
I don't use the desktop because it clutters to often, so I just pin everything to the start menu. Thanks again!
envlute\Scripts\activate didn't work my computer ? do you have any idea? i making one by one your steps.
+ envlute\Scripts\activate
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
i solved :) with Get-ExecutionPolicy . "for the other users."
It's says that is dangerous to make it. Do you think is sure to install the proggram?@@derick9650
Run Powershell as admin
cd C:\Windows\system32
Set-ExecutionPolicy RemoteSigned
cd your lute directory here
envlute\Scripts\activate
I downloaded it in my mobile but selecting sentences doesn't work
how did you downloaded it on your phone?
Yes how?
I need the settings for Korean language.
I updated to version 3.13, it stopped working, so I uninstalled everything, installed it again, and now it doesn't work anymore
Can you tell me more about what error you're getting? Otherwise you can always jump onto the Discord server and people will probably be able to help you better than I can!
@@is4ndroide Hello, I just installed exactly as you taught and it worked, but after updating to version 3.13 the program doesn't work anymore, on the screen it says "initializing app" and just says that, I waited almost half an hour and nothing appears besides the initializing message. Thanks for the help.
I downloaded another version of Python (3.12), deleted the entire file of the Lute and went through the installation process again, now it seems to be working fine. Thanks again for the help.
thenkiu you
friend, you are a friend
Thank you
thanks you
Thanks for making meaningful content instead of clickbait shit to get subscribers!
This software is not at all easy to install and it doesn't work with many dictionary site but it does with the one listed below for German to English.
I'm not sure what you mean. Lute supports all kinds of dictionaries. I personally use dict.cc and Wiktionary for German, but I know many others work as well. You can change the default dictionaries in the settings for each language. If you need help with this, check out the manual or let me or the guys on the Discord server know!
@@is4ndroide This worked Cambridge and Collins among others failed or rejected the connection. I will adjust my review. Thank you.
@@dylanalliata4809 Hey there, sorry about that! (I wrote Lute) -- some dictionaries can't be embedded. There's a link in the manual about how to set up dictionaries as "pop-up" windows.