Gabe Morris

Results 19 comments of Gabe Morris

I have been wondering this same thing. By the looks of it, you should use `upip` (docs found [here](https://docs.micropython.org/en/latest/reference/packages.html#packages)), but running `upip` is throwing errors for me. I posted this...

@jbarlow83 I it to run! I should have gone to pyinstaller first, so sorry about that. The fix can be found here: https://github.com/pyinstaller/pyinstaller/issues/4809 I had to create hook files for...

@jbarlow83 You have to make two different .py scripts in a folder within your project. For my example, I made a folder called Hooks, and these are the two scripts...

Whenever you're flashing the script using Pycharm, you have to make sure that no other application is connected. It appears as though you are attempting to flash while Thonny is...

@somniumLux According to your screenshot, there is nothing wrong with PyCharm. It successfully flashed the script to the board. The only thing micropython in PyCharm can't do is run the...

I'm pretty sure that's just how it's designed to work. What's the issue with just calling the file `main.py`?

As far I can tell, the plugin is designed to only flash scripts named `main.py`. I agree that the naming of files is important for readability and organization. I can...

You have to run it from the REPL console. I believe this feature is temporarily down. You can only flash scripts. See issue #270.

@emcek The REPL console still doesn't work on Pycharm 2023.3.1 with Micropython 1.4.0. @zerovijay You can install previous versions of the Micropython plugin through [this page](https://plugins.jetbrains.com/plugin/9777-micropython/versions/stable). Follow the instructions after...

What you need to do is put all your dependent modules (like the one that contains `MetroFilter`) into a folder. Right click on that folder and go down to "Mark...