直接百度搜索“Python官网下载
”,进入Python官网:
直接在Python官网里面指定的地方点击下载:
等待下载完成,然后双击运行:
接下来,一系列的安装过程:
等待安装完成:
打开cmd,输入python
,出现下面这样,就表示Python解释器安装成功了;
直接百度搜索“Pycharm官网下载”,进入jetbrains官网:
直接在jetbrains官网里面指定的地方点击下载:
等待下载完成,然后双击运行:
选中代码,快捷键:Ctrl+Alt+L
是否推荐 | ||
---|---|---|
华为镜像源 | https://repo.huaweicloud.com/repository/pypi/simple/ |
推荐 |
清华大学源 | https://pypi.tuna.tsinghua.edu.cn/simple/ |
推荐 |
阿里源 | http://mirrors.aliyun.com/pypi/simple/ |
不推荐 |
腾讯源 | http://mirrors.cloud.tencent.com/pypi/simple/ |
不推荐 |
豆瓣源 | http://pypi.douban.com/simple/ |
不推荐 |
中国科学技术大学源 | http://pypi.mirrors.ustc.edu.cn/simple/ |
不推荐 |
华中科技大学源 | http://pypi.hustunique.com/ |
不推荐 |
不推荐原因【直接pip install xxx -i yyy 报错】:
WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with ‘–trusted-host mirrors.aliyun.com’.
ERROR: Could not find a version that satisfies the requirement selenium (from versions: none)
ERROR: No matching distribution found for selenium
还得使用解决方案【添加–trusted-host pypi.douban.com 的作用是获得ssl证书的认证】【以selenium和豆瓣源为例】:
pip install selenium -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
华为镜像源和清华大学源是不需要的【以selenium为例】:
pip install selenium -i https://repo.huaweicloud.com/repository/pypi/simple/
查看包【以selenium为例】:
pip show selenium
卸载包【以selenium为例】:
pip uninstall selenium -y
①如图所示,在对应目录(当前用户下创建pip文件夹)下新建文件:pip.ini
②编辑文件:
[global]
index-url = http://pypi.douban.com/simple/
[install]
trusted-host=pypi.douban.com
保存就可以了。
查看pip安装的包:
pip list
自动生成项目依赖的模块,形成requirement.txt文件:
pip freeze >requirement.txt # 后面的文件名可以自定义
pip install -r requirement.txt
pip install 下载好的.whl文件
免责声明:
1.编写此文是为了更好地学习,如果损害了有关人的利益,请联系删除;
2.如果文中描述欠妥,请在评论中进行指正;
3.文字编写不易,若感觉有用,点赞收藏关注会让博主很开心哦;
4.此外,转载请注明出处,非常感谢!!!
本文源自:https://blog.csdn.net/testleaf/article/details/126066570