I want to use it to code my EV3 brick. I read all the answers on stackoverflow for similar questions, but none of them helped.
Asked
Active
Viewed 782 times
-1
-
Please post the solution as an answer. It should not be edited into the question. – Dharman Nov 04 '21 at 17:01
2 Answers
2
Have you installed the LEGO EV3 Extension?
And you can install the pybricks
like this pip install git+https://github.com/pybricks/pybricks-api@master
Then you need to import it like this:
from pybricks.hubs import EV3Brick
You can refer to this link for more details, some people others had to submit a feature request of this early.

Steven-MSFT
- 7,438
- 1
- 5
- 13
-
I did all of this and it still doesn't work, I set up a virtual environment, installed pybricks and the extension, and did everything in your link – Liam K. Nov 04 '21 at 16:48
-