BradenM / micropy-cli

Micropython Project Management Tool with VSCode support, Linting, Intellisense, Dependency Management, and more!
https://micropy-cli.readthedocs.io
MIT License
316 stars 25 forks source link

Problem after updating to the latest version #521

Closed elatobi closed 1 year ago

elatobi commented 1 year ago

I updatet micropy-cli to the latest version and i can't get it work again. After the first install i head a lots of trouble to get it work so i never updated it. But now i did it and can't remember how i managed it to work. I'm using a MacOS 13.4.1 VSCode 1.65.2. when I run the init command i get the following error message Tobi@Tobis-MBP-16 Test_1 % micropy init Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.9/bin/micropy", line 5, in <module> from micropy.cli import cli ModuleNotFoundError: No module named 'micropy.cli'

I'm very thankful for any help 😁

BradenM commented 1 year ago

Hi @elatobi,

This seems to be an issue with your python environment or related. That error is indeed correct that micropy.cli is not a module.

It was, however, a module in prior versions... so either something went wrong with your installation or your shell may be referencing an older installation binary (may be a PATH issue). Without some more details about your setup and how you actually went about installing it, that's about all I can say.

I would recommend looking into pipx: https://pypa.github.io/pipx/

It's a tool that allows you to install python executables into isolated python virtual environments.

elatobi commented 1 year ago

Hi @BradenM I updated micropy via the pip command. I didn't touched anything at the Python environment on my MacBook. Im not really familiar with all the python installations. I will try your recommendation

BradenM commented 1 year ago

:+1: Closing this assuming you figured your issue out. You are welcome to reopen if needed.