环境的搭建
Posted the-meaning-of-life111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了环境的搭建相关的知识,希望对你有一定的参考价值。
pip config set global.index-url (镜像地址) pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/阿里云 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 清华
pip insatll -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple 华为 <some-package>
npm install -g cnpm --registry=https://registry.npm.taobao.org 淘宝镜像源站
npm config set registry https://repo.huaweicloud.com/repository/npm/ npm cache clean -f 华为云镜像站
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>https://maven.aliyun.com/repository/public</url> <mirrorOf>central</mirrorOf> </mirror>
<mirror>
<id>huaweicloud</id>
<mirrorOf>*</mirrorOf>
<url>https://repo.huaweicloud.com/repository/maven/</url>
</mirror>
https://goproxy.cn/ Go语言镜像站 goland settings GoModules 设置proxy代理 https://goproxy.cn
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
https://mirrors.aliyun.com/goproxy/ 阿里云go镜像站
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/
以上是关于环境的搭建的主要内容,如果未能解决你的问题,请参考以下文章
基于OpenGL编写一个简易的2D渲染框架02——搭建OpenGL环境
环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段