python环境安装
用conda管理本地的python环境
下载conda,安装并设置环境变量
Index of /anaconda/miniconda/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
下载最新的windows版本
环境变量Path添加codna的路径
配置国内源
执行conda config --set show_channel_urls yes
修改C:\Users\{用户名}\.condarc 文件
然后更新conda配置
conda update --all
ssl_verify: true
show_channel_urls: true
channels:
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64/
创建虚拟环境
conda create -n py3.6 python=3.6.1
conda create -n py3.8 python=3.8.12
查看环境
切换环境
conda activate py3.6
安装pycharm community
下载安装community版本
Download PyCharm: Python IDE for Professional Developers by JetBrains
便捷的工具插件可以参考5个好用的pycharm community插件_SHOUGOUGOU的专栏-CSDN博客
安装jupyter
pip install jupyter
或者安装进阶版jupyterlab,参考JupyterLab,极其强大的下一代notebook! - 知乎
conda install -c conda-forge jupyterlab
你可以在命令行使用jupyter-lab或jupyter lab命令,然后默认浏览器会自动打开Jupyter Lab。
|