win10常用开发配置
Posted chenzhaoyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了win10常用开发配置相关的知识,希望对你有一定的参考价值。
yarn
yarn config get registry # 查看当前设置的镜像源地址 yarn config set registry ‘https://registry.npm.taobao.org‘
python
1.Ctrl+R 输入 %APPDATA%
2.新建pip目录,并在pip目录下新建pip.ini
3.在pip.ini中输入:
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
maven
配置本地macen的setting.xml文件
<localRepository>D:Applicationsapache-maven-3.5.4maven-repository</localRepository>
<mirrors> <mirror> <id>nexus-aliyun</id> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
以上是关于win10常用开发配置的主要内容,如果未能解决你的问题,请参考以下文章