思维导图
Python在Windows中的搭建

python解释器的安装和配置
下载python:www.python.org
Python在Windows中的搭建
选择windows
Python在Windows中的搭建

选择最新版本
Python在Windows中的搭建

安装exe格式

Python在Windows中的搭建

开始安装,选择自定义安装
Python在Windows中的搭建

自定义设置
Python在Windows中的搭建

选择自定义安装位置,建议不要安装在c盘
Python在Windows中的搭建
安装成功
Python在Windows中的搭建
命令测试
通过Dos工具测试
windows + r进入dos工具
Python在Windows中的搭建
Python在Windows中的搭建
命令测试
Python在Windows中的搭建
通过自带的IDLE图形工具测试
进入图形工具,打开windows菜单栏
Python在Windows中的搭建
测试
Python在Windows中的搭建
Anaconda的安装和配置
什么是Anaconda:可以看做python中的全家桶套餐
安装Anaconda
https://anaconda.org(国外网站,下载较慢)
https://mirrors.tuna.tsinghua.edu.cn/anconda/achive(清华大学的Anaconda安装包)
使用清华大学安装包
安装最新版本
Python在Windows中的搭建
Python在Windows中的搭建
Python在Windows中的搭建
选择下一步
Python在Windows中的搭建
同意协议
Python在Windows中的搭建
选择只给自己使用,下一步
Python在Windows中的搭建
自定义安装路径
Python在Windows中的搭建
自定义安装解释器
Python在Windows中的搭建
Python在Windows中的搭建
是否安装vscode
Python在Windows中的搭建
安装完成
Python在Windows中的搭建
测试
在Dos界面输入conda没有显示命令不存在
Python在Windows中的搭建
python解释器环境管理
在企业工作时可能会用到两种不同的python例如有的项目是在python2中写的代码,所以就需要用到虚拟环境
conda env list:查看虚拟环境
Python在Windows中的搭建

conda create -n 虚拟名称 python=版本 panda:创建虚拟环境(我这里已经创建好了)
Python在Windows中的搭建

conda activate 虚拟名称:进入虚拟环境
Python在Windows中的搭建

conda deactivate:退出当前虚拟环境
Python在Windows中的搭建
conda env remove -n 虚拟名称:删除虚拟环境

Python在Windows中的搭建
pycharm安装和配置
pycharm:python中方便的软件
安装地址:https://www.jetbrains.com/pycharm
Python在Windows中的搭建
选择windows专业版安装
Python在Windows中的搭建
根据自身需求安装完成后进入界面配置
进入设置
Python在Windows中的搭建
调节目录栏字体

Python在Windows中的搭建

调节主题颜色
Python在Windows中的搭建
调节代码区域字体大小和字体间距
Python在Windows中的搭建

相关文章:

  • 2021-06-12
  • 2022-02-07
  • 2021-08-22
  • 2022-01-11
  • 2021-05-13
  • 2021-08-26
猜你喜欢
  • 2021-06-03
  • 2021-06-26
  • 2022-12-23
  • 2021-06-01
  • 2021-08-31
  • 2021-06-14
  • 2022-02-15
相关资源
相似解决方案