Difference between revisions of "Install nBlocksStudio and mbed-cli"
From emboxit
Line 1: | Line 1: | ||
*pip install panda3d | *pip install panda3d | ||
*pip install pywin32 | *pip install pywin32 | ||
+ | |||
==Install mbed-cli== | ==Install mbed-cli== | ||
Line 18: | Line 19: | ||
* Install mbed cli from command prompt: | * Install mbed cli from command prompt: | ||
pip install mbed-cli | pip install mbed-cli | ||
+ | * Install panda3d | ||
+ | pip install panda3d | ||
+ | *Install pywin32 | ||
+ | pip install pywin32 | ||
+ | |||
===References=== | ===References=== | ||
*[https://www.youtube.com/watch?v=cM0dFoTuU14 Learn to use Mbed CLI: How to install manually] | *[https://www.youtube.com/watch?v=cM0dFoTuU14 Learn to use Mbed CLI: How to install manually] |
Revision as of 07:41, 16 March 2018
- pip install panda3d
- pip install pywin32
Contents
Install mbed-cli
15/03/2018
Mercurial
Git
GCC
Python
- Download 32 bit windows installer for Python 2.7 (dont use 64bit Python installer, issues with pip)
- Configure installer for adding Python path to system path and complete Python 2.7 installation
- Restart Windows (otherwise pip fails)
- Test Python from command line:
Python --version
and pip with
pip --version
Both should work from any directory
- Install mbed cli from command prompt:
pip install mbed-cli
- Install panda3d
pip install panda3d
- Install pywin32
pip install pywin32
References
Import existing program from online compiler
- From online compiler right click on the project and publish (or FORK) in to something like this: frequency_counter
- If the project is copy from somebody else's project, probably have to fork to your own mbed space
- With administrative rights,
mbed import https://developer.mbed.org/users/chalikias/code/frequency_counter/
- for a list of supported targets
mbed compile -S
- Finnaly
mbed compile -m LPC1768 -t GCC_ARM
References