美文网首页
2019-06-15_python编程工具之Thonny Ins

2019-06-15_python编程工具之Thonny Ins

作者: 好脾气囍来 | 来源:发表于2019-06-15 01:23 被阅读0次

Thonny install


Installing via distribution's package manager

Ubuntu since 18.04:

> sudo apt install thonny

Fedora since 27:

> sudo dnf install thonny

Alternative way for installing

If you want more control, then you can do the install steps separately.

Download the file with tar.gz extension. If you have 64-bit Linux, then use file with x86_64 suffix, otherwise use the one with i686 suffix (run uname -m in terminal if you are not sure which you have).

Unpack the file and run the installation script.For example, in Ubuntu command line you could execute following commands:

> tar -zxvf thonny-1.1.0b7-x86_64.tar.gz
> cd thonny
> ./install

This will install Thonny under apps directory in your home directory. If you would like to install to a specific location, then you can specify parent folder for Thonny folder eg:

> sudo ./install /opt

Uninstalling

Excecute the uninstall command shown by the installer, eg.

> sudo /opt/thonny/bin/uninstall

相关文章

  • 2019-06-15_python编程工具之Thonny Ins

    Thonny install Installing via distribution's package mana...

  • Pygame Zero文档的思维导图和入门实例

    我博客上有最新更新版,欢迎访问 我认为Python + Pygame Zero + Thonny是最好的少儿编程入...

  • 常用工具类

    待整理 编码习惯之工具类规范Java 编程技巧之数据结构 概述 工具类的选择顺序:语言自带(java)>专用工具类...

  • Thonny IDE 尝试

    最近一直在使用 Pycharm 开发python,在开发的过程中也发现了一些不太顺手的地方,因为我是一个 pyth...

  • creator protobuf js加载方案 接入方案

    准备工具:cocosCreatorVSCodenode.js 步骤:安装protobufjs到全局 npm ins...

  • iOS 中常见 Crash 总结

    iOS编程中的常见奔溃汇总 1、找不到方法的实现unrecognized selector sent to ins...

  • 一、vue-cli新建项目

    工具:vscode 参考:vue-cli安装(https://cli.vuejs.org/zh/guide/ins...

  • ins上网小工具

    前几天一个朋友和我说,她没有办法继续玩ins了,我想了一下,自己做了一个小工具,做以下分享; 1、苹果,Shado...

  • Thonny快捷键

    功能快捷键说明Toggle CommentCtrl + 3注释/反注释选中的代码Comment outAlt + ...

  • 编程语言社会学

    「编程语言只是个工具。」很多人这样说。 是的,编程语言「只是」一个工具,但作为开发人员最主要的工具,编程语言的语法...

网友评论

      本文标题:2019-06-15_python编程工具之Thonny Ins

      本文链接:https://www.haomeiwen.com/subject/cflvfctx.html