1.python环境安装

Windows环境安装

Python下载地址:https://www.python.org/downloads/

下载Windows x86-64 executable installer, 按照提示安装即可。

注意,勾选增加PATH路径。

打开Windows命令行

$ python -V

Python 3.6.8

$ pip -V

pip 19.0.3 (python 3.7)

pip是Python包管理器,以后安装Python第三方包都需要它,它从3.x开始就集成在Python安装包里面了。

pip通用配置

windows配置文件:[ ~/pip/pip. ini。windows家目录,在"运行”中键入.

Linux配置文件: [ ~/ .pip/pip. conf]内容,可参照htp://mirors.aliyun.com的pypi帮助

[global]

index-url = https: //mirrors . aliyun. com/ pypi/simple/

[install]

trusted-host-mirrors . aliyun. com

pip install pkgname 命令,是安装python包的命令

安装Jupyter

是基于WEB的交互式笔记本,其中可以非常方便的使用Python。

安装Jupyter,也会依赖安装ipython的。

$ pip install jupyter

$ jupyter notebook help

$ jupyter notebook --ip=0.0.0.0 -- no- browser

常用快捷键

●a之前插入代码块、b之后插入代码块

●L增加行号

●运行代码块shift + enter,选择下面的代码块

●运行当前代码块ctrl + enter

Pycharm安装

官网下载Pycharm社区版,足够开发项目使用了。

下载地址:https://ww.jetbrains.com/pycharm/download/#section=windows

查阅帮助

●在线帮助,html

●下载并打开官方文档,chm

    。第一手好的资料应该是帮助文档

。https://www.python.org/downloads/windows/

●IPython中

  。使用help(keyword), keyword可以是变量、 对象、类、函数等

你可能感兴趣的:(1.python环境安装)