1.下载Pycharm
https://www.jetbrains.com/pycharm/
2.下载Anaconda
这里有下载地址和不同python版本对应的anaconda版本https://blog.csdn.net/u011732358/article/details/88583954
我用的是python3.6版本 windows 64位
3.配置anaconda以及pycharm
pycharm下载后直接安装即可,我下载的社区版,所以也无需破解啦,安装好就可以啦,无需多余的配置。
1.anaconda下载安装后需要进行两步简单配置:(1)把
Anaconda3( Python需要);
Anaconda3\Scripts(Anaconda 自带脚本(conda、jupyter notebook、ipython));
Anaconda3\Library\bin(jupyter notebook动态库)添加到环境变量Path中。
(2)修改下载源,这样下载jar包时候能快点
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
# 注意如果需要pytorch, 还需要添加pytorch的镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda info
2.然后pycharm配置
点击设置
临时安装时候可以使用这个
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
比如安装numpy
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
参考:
https://jingyan.baidu.com/article/1876c8527be1c3890a137645.html
https://blog.csdn.net/qq_42348937/article/details/84669010
https://blog.csdn.net/qq_29007291/article/details/81103603