window搭建python环境
Posted mvpbang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window搭建python环境相关的知识,希望对你有一定的参考价值。
在window开发python代码,搭建python环境!
01、下载python-win
https://www.python.org/downloads/windows/
http://ipython.org/ ###友好的交互python
02、安装python
###自动在Window添加的环境变量
03、升级pip及安装ipython
win+R--->cmd
python -m pip install --upgrade pip
pip install ipython
04、修改pythin-pip为国内源
阿里云
http://mirrors.aliyun.com/pypi/simple/
中国科技大学
https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban)
http://pypi.douban.com/simple/
清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
//window-pip-env
用户\\pip\\pip.ini
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
Path后追加:%USERPROFILE%\\pip\\pip.ini
以上是关于window搭建python环境的主要内容,如果未能解决你的问题,请参考以下文章