Powered by QuecPython Group, provide support for programming based on the quecpython platform on Thonny. Hereinafter collectively referred to as "Quecpython Kits".
now, we just assume you want to install thonny(with Quecpython Kits) on your own python environment(maybe a new virtual environment or a existed one).
if you want to make a new one, you need to run below two steps:
-
make new python virtual environment.
shell:
python -m venv {virtual_environment_install_path}
-
activate your the virtual environment.
windows:
{virtual_environment_install_path}\Scripts\activate
.macos or unix:
source {virtual_environment_install_path}/bin/activate
.
else you just need to do:
-
install
shell:
pip install -i {pypi_site_url} thonny-quecpython
here is some web site for pypi download below, you can choose one.
pypi_site_url http://pypi.douban.com/simple/ https://pypi.tuna.tsinghua.edu.cn/simple/ http://mirrors.aliyun.com/pypi/simple/ https://pypi.mirrors.ustc.edu.cn/simple/ when you install
thonny-quecpython
, thethonny>=4.1.1
will be installed automatically. -
start thonny
shell:
python -m thonny
when you start thonny program, it will load plugins automatically(including Quecpython Kits).
before installing QuecPython Kits on this way, you need to install Thonny application first.
install using thonny plugin manager from pypi.
- Go to
Thonny → Tools → Manage plug-ins
- Search for
thonny-quecpython
- Click
Install
install manually from local file.
- Download using the QuecPython/thonny-quecpython/releases(wheel or tar package file).
- Go to
Thonny → Tools → Manage plug-ins…
- Click
Install from local file
- Find and select the prefered file.
- After installing, and starting thonny, the Quecpython Kits already loaded.
- Go to
Thonny → Tools → QuecPython Kits
. - or Go to
Thonny → Views → QuecPython Kits
. - Select
QuecPython Kits
get more infomation about Thonny from: https://github.com/thonny/thonny.