[idea plugin]python for idea plugin

给idea安装插件python

物料:

1、idea 2016.3

2、python plugin 2016.3.125 [高版本的安装不上]

3、安装python到本机,验证环境;

步骤:

1、下载插件:https://plugins.jetbrains.com/idea/plugin/631-python

2、放到本地指定目录:比如我的安装目录的plugin目录为 E:\Program Files (x86)\JetBrains\IntelliJ IDEA 2016.3.2\plugins;

需要注意的是目录层级结构保持一下比较好;插件名 > lib,help,helpers; 比如:python/lib,help,helpers....

3、idea中加载插件:进入setting > plugins > install plugin from disk 找到步骤(2)中的文件复制位置,定位到IntelliJ IDEA安装程序的 plugins>python>lib>python.jar 点击ok完成;

至此,python插件安装完毕,下一步就是重启idea,创建python项目测试是否好用。

创建项目测试:

时间: 2024-08-09 06:21:25

[idea plugin]python for idea plugin的相关文章

【转】This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in

原文网址:http://1982106a.blog.163.com/blog/static/8436495620149239361692/ 预览layout.xml文件时提示: This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in 导致无法正常预览布局文件: 问题根源:SDK版本过高,ADT版本低: 解决办法有好几种,如下:

eclipse创建android项目,无法正常预览布局文件,出现This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in...

eclipse创建android项目时,预览layout.xml文件时提示: This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in,导致无法正常预览布局文件.问题根源:SDK版本过高,ADT版本过低.解决方法如下. 工具/原料 eclipse ADT插件 方法/步骤 找到eclipse文件夹,打开eclipse软件,创建and

预览安卓xml布局文件提示 This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in,

eclipse创建android项目时,预览layout.xml文件时提示: This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in,导致无法正常预览布局文件.问题根源:SDK版本过高,ADT版本过低.解决方法如下. 工具/原料 eclipse ADT插件 方法/步骤 找到eclipse文件夹,打开eclipse软件,创建and

test Python source code plugin with Windows live writter 2012–

内容介绍ZT: http://www.cnblogs.com/liuxianan/archive/2013/04/13/3018732.html 博客园官方给出了2个,一个一个介绍. 1.WindowsLiveWriter.CNBlogs.CodeHighlighter.rar 这个插件生成的高亮代码与网页上的一模一样,插入后即可立即显示效果,不过貌似它必须联网才能实时显示效果,因为博客园官方说这是基于“云处理”的.安装方法很简单,将上面的压缩包解压然后复制里面的文件到: C:\Program

CRM 2011 Plugin 知识点小总结 plugin初学者必备知识

1.??的使用,就是判断值是否为null,为null的话,给赋初值,否则就直接取值. decimal new_amount = 0; if (targetEntity.Contains("字段1")) { //?? 判断(targetEntity["字段1"] as Money为null的话,赋值为0 new_amount = (targetEntity["字段1"] as Money ?? new Money(0M)).Value; } 注:字

创建一个dynamics 365 CRM online plugin (五) - Images in Plugin

Snapshots of the primary entity's attributes from database before(pre) and after (post) the core platform operation. 怎么理解这句话呢 简单的我们可以理解PreOperation与PostOperation的 entity中数据的镜像. 使用Pre-Entity镜像的一些案例: 1. 如果你需要对original data在modification之前做使用. 2. 如果你需要fo

Python实现Plugin

1. Plugin与Python 插件的历史最早可追溯至1970年代,它是一种程序组件,通过和应用程序的互动,为应用程序增加一些所需要的特定的功能[维基].插件允许第三方开发者对已有的程序功能进行扩展和完善,具体的例子包括音频播放软件的解码器.浏览器的视频播放插件等.插件需要按照一定的接口规范与应用程序互动,这个规范是调用它的应用程序定义的. 为了在实践上应用,我看了两篇搜索比较靠前的博客文章,它们的代码比较精简,都是通过python package来实现的. 本文组织如下.第二部分介绍pyth

uwsgi flask 在python3环境下配置

常规用flask搭建个网页,用官方docker上的ubuntu16.04为基础镜像搭建,我用python3运行的flask,发现uwsgi --http-socket :80 --uwsgi-file test.py --callable app 发现无法运行,报getopt_long() error错误,根据google搜索解决方法 ,说要几个--python选项,于是uwsgi --http-socket :80 --uwsgi-file test.py --callable app  --

怎样写 OpenStack Neutron 的 Plugin (一)

鉴于不知道Neutron的人也不会看这篇文章,而知道的人也不用我再啰嗦Neutron是什么东西,我决定跳过Neutron简介,直接爆料. 首先要介绍一下我的开发环境.我没有使用DevStack,而是直接在电脑上安装了三个Virtual Box,然后根据OpenStack的Ubuntu 安装指南部署了一个环境:一个控制节点,一个网络节点和一个计算节点.接下来我会直接在控制节点上修改 <your path>/neutron/ 下面的文件,然后通过重启neutron 的各个service来更新我的修