diff --git a/README.md b/README.md index 4497d34..6233ef4 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ## 1. 内容 1. [课程简介](CourseIntroduction.pdf) 2. [Python](0_python/) - - [Install Python](tips/InstallPython.md) + - [Install Python](references_tips/InstallPython.md) - [Python Basics](0_python/1_Basics.ipynb) - [Print Statement](0_python/2_Print_Statement.ipynb) - [Data Structure 1](0_python/3_Data_Structure_1.ipynb) diff --git a/images/machine_learning.jpg b/images/machine_learning.jpg new file mode 100644 index 0000000..2ba70e7 Binary files /dev/null and b/images/machine_learning.jpg differ diff --git a/references_tips/InstallPython.md b/references_tips/InstallPython.md index bdde019..b3d635e 100644 --- a/references_tips/InstallPython.md +++ b/references_tips/InstallPython.md @@ -1,4 +1,4 @@ -# 按照Python环境 +# 安装Python环境 由于Python的库比较多,并且依赖关系比较复杂,所以请仔细阅读下面的说明,并按下面的说明来操作,减少问题出现的可能。 **但是所列的安装方法说明里有较多的细节,也许和你的系统并不适配,所以会遇到问题。如果遇到问题请通过搜索引擎去查找解决的办法**,通过这个方式锻炼自己解决问题的能力。 @@ -12,13 +12,15 @@ pip install -r requirements.txt ### 安装Anaconda -由于Anaconda集成了大部分的python包,因此能够很方便的开始使用。由于网络下载速度较慢,因此推荐使用镜像来提高下载的速度。镜像的使用方法可以参考[Anaconda镜像的说明文档](https://mirrors.tuna.tsinghua.edu.cn/help/anaconda) +由于Anaconda集成了大部分的python包,因此能够很方便的开始使用。由于网络下载速度较慢,因此推荐使用镜像来提高下载的速度。镜像的使用方法可以参考:[Anaconda镜像的说明文档](https://mirrors.tuna.tsinghua.edu.cn/help/anaconda) -在这里找到适合自己的安装文件,然后下载 -https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ +1. 在这里找到适合自己的安装文件,然后下载 + https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ +2. 按照说明,把Anaconda安装好。 + +3. 设置软件源 https://mirror.tuna.tsinghua.edu.cn/help/anaconda/ -设置软件源 https://mirror.tuna.tsinghua.edu.cn/help/anaconda/ ``` conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ @@ -87,3 +89,4 @@ pip3 install torch torchvision - [virtualenv的安装、使用](python/virtualenv.md) - [virtualenv便捷管理工具:virtualenv_wrapper](python/virtualenv_wrapper.md) +* Anaconda使用技巧 \ No newline at end of file