二、PyCharm 安装与破解
2018-12-15 本文已影响0人
daley_磊
mac PyCharm 安装
- 下载地址:PyCharm官网下载
官方提供两个版本的PyCharm 开发工具
Professional(专业版) | Community(社区版) |
---|---|
Full-featured IDE for Python & Web development | Lightweight IDE for Python & Scientific development |
用于Python和Web 开发的全功能IDE | 用于Python和科学开发的轻量级IDE |
收费 | 免费 |
建议下载专业版,功能比较强大。
mac PyCharm 破解
- 修改hosts 文件
vim /etc/hosts
添加 0.0.0.0 account.jetbrains.com
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhos
0.0.0.0 account.jetbrains.com
- 获取注册码链接:
http://idea.lanyus.com - 选择Activation code,然后输入在注册码连接中获取的注册码
大功告成,PyCharm 就可以免费使用了!
上一篇:一、python3 环境构建