赞
踩
搭建环境
Python的解释器
• 环境搭建就是安装Python的解释器
• Python的解释器分类:
• CPython(官方我们用的就是这个版本) 用c语言编写的Python解释器
• PyPy 用Python语言编写的Python解释器
• JPython 用Java编写的Python解释器
开始安装
作业操作截图.png
QQ图片20210117183824.png
QQ图片20210117183838.png
QQ图片20210117183849.png
安装成功
QQ图片20210117183904.png
QQ图片20210117183912.png
Python的交互模式
win键 + R --> CMD --> 回车 --> 输入Python
命令行结构
Python 3. 6. 5 .... ---> 版本
Type "help","copyright".....---> 版权声明
---> 命令提示符 (在后面可以直接输入指令)
pip工具的使用
pip介绍
我们都知道python有很多的第三方库或者说是模块。这些库针对不同的应用,发挥不同的作用。我们在实际的项目中肯定会用到这些模块。那如何将这些模块导入到自己的项目中呢?
Python官方的PyPi仓库为我们提供了一个统一的代码托管仓库,所有的第三方库,甚至你自己写的开源模块,都可以发布到这里,让全世界的人分享下载 。
python有两个著名的包管理工具easy_install和pip。在python 2中easy_install是默认安装的,而pip需要我们手动安装。随着Python版本的提高,easy_install已经逐渐被淘汰,但是一些比较老的第三方库,在现在仍然只能通过easy_install进行安装。目前,pip已经成为主流的安装工具,自Python 2 >=2.7.9或者Python 3.4以后默认都安装有pip
pip使用
在命令行下,输入pip,回车可以看到帮助说明:
![QQ图片20210117183921.png](https://upload-images.jianshu.io/upload_images/25659850-56f351233ce30267.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
查看pip版本
pip -V
pip --version
卸载已安装的库
pip uninstall requests
将已经安装的库列表保存到文本文件中
pip freeze > D:\桌面\install.txt
1577608748349-bb2beba4-2810-49db-b03f-7863b2ffa8ce.png
PyCharm的安装和配置
PyCharm的安装 下载社区版
QQ图片20210117183927.png
PyCharm的简单配置
• 1、主题修改 File--settings--apperance--theme
• 2、代码字体修改 File--settings--Editor-Font
• 3、关闭更新 File--settings---apperance---System Settings ---Updates --- Automatically check updates for 取消打钩
• 4、快捷键修改 File--settings---apperance-- Keymap 选择自己习惯的快捷键方式
• 5、自动导包 File--settings---apperance--General ---Auto Import 打钩
• 6、进制打开上次的工程 File--settings---apperance---System Settings ---Reopen last project startup
• 7、修改新建文件文件头 File--settings--Editor---Code Style --- File and Code Templates --- Python Script
• #!/usr/bin/env python
• # -- coding: utf-8 --
• # @Time :
{TIME}
• # @Author : Jerry
• # @File :
{PRODUCT_NAME}
• 8、修改字体编码 File--settings--Editor---Code Style --- File Encoding --- Project Encoding
![![![QQ图片20210117183943.png](https://upload-images.jianshu.io/upload_images/25659850-09bf31010e1769c4.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
](https://upload-images.jianshu.io/upload_images/25659850-4cf25e00d7a4b3b7.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
](https://upload-images.jianshu.io/upload_images/25659850-86bfe824dd48c3aa.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。