win10安装开发环境

1. 安装IDEA2021.1

  1. 官网下载.exe后缀的安装包:https://www.jetbrains.com/idea/download/#section=windows

  2. 双击ideaIU-2021.1.exe,开始安装

    win10安装开发环境_第1张图片

win10安装开发环境_第2张图片

win10安装开发环境_第3张图片

win10安装开发环境_第4张图片

win10安装开发环境_第5张图片

2. 安装jdk

  1. 去官网:https://www.oracle.com/java/technologies/javase-downloads.html

    win10安装开发环境_第6张图片

win10安装开发环境_第7张图片

  1. 双击运行

win10安装开发环境_第8张图片

win10安装开发环境_第9张图片

win10安装开发环境_第10张图片

win10安装开发环境_第11张图片

win10安装开发环境_第12张图片

win10安装开发环境_第13张图片

  • 配置环境变量
  1. 右键“我的电脑”,点击“属性”打开系统页面,搜索“高级系统设置”按钮。

win10安装开发环境_第14张图片

  1. 新建“JAVA_HOME”系统变量。(点击“系统变量”下方的“新建”按钮,填写变量名与变量值,点击“确定”)

win10安装开发环境_第15张图片

win10安装开发环境_第16张图片

  1. 同上,新建“CLASSPATH”系统变量,变量值为“.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;”。(引号内的全部内容,注意最前方是点不是逗号)

win10安装开发环境_第17张图片

  1. 双击“系统变量”下的“Path”变量进行编辑。(此时可以看到JAVA_HOME已经存在于系统变量中),(有的电脑"Path"也写作“PATH”)

win10安装开发环境_第18张图片

  1. 在打开的Path界面,新建变量,值为%JAVA_HOME%\bin,并将该变量上移至顶端区域。(推荐移到第二个)

win10安装开发环境_第19张图片

win10安装开发环境_第20张图片

  1. 同理,在打开的Path界面,新建变量,值为%JAVA_HOME%\jre\bin,并将该变量上移至顶端。

win10安装开发环境_第21张图片

  • 通过控制台命令验证配置是否成功

在控制台分别输入javajavacjava -version,若出现如下图所示即为配置成功。

win10安装开发环境_第22张图片

win10安装开发环境_第23张图片

win10安装开发环境_第24张图片

3. 安装git

  1. 官网:https://git-scm.com/downloads,点击windows进行下载
  2. 将下载的.exe文件双击,直接点击next

win10安装开发环境_第25张图片

win10安装开发环境_第26张图片

win10安装开发环境_第27张图片

Additional icons 附加图标
On the Desktop 在桌面上
Windows Explorer integration Windows资源管理器集成鼠标右键菜单
Git Bash Here
Git GUI Here
Git LFS (Large File Support) 大文件支持
Associate .git* configuration files with the default text editor 将 .git 配置文件与默认文本编辑器相关联
Associate .sh files to be run with Bash 将.sh文件关联到Bash运行
Use a TrueType font in all console windows 在所有控制台窗口中使用TrueType字体
Check daily for Git for Windows updates 每天检查Git是否有Windows更新

win10安装开发环境_第28张图片

win10安装开发环境_第29张图片

win10安装开发环境_第30张图片

win10安装开发环境_第31张图片

配置PATH环境
Use Git from Git Bash only
This is the safest choice as your PATH will not be modified at all.You will only be able to use the Git command line tools form Git Bash.
这是最安全的选择,因为您的PATH根本不会被修改。您只能使用 Git Bash 的 Git 命令行工具。

Use Git from the Windows Command Prompt
This option is considered safe as it only adds some minimal Git wrappers to your PATH to avoid cluttering your environment with optional Unix tools . You will be able to use Git from both Git Bash and the Windows Command Prompt.
这个选项被认为是安全的,因为它只向PATH添加一些最小的 Git包,以避免使用可选的Unix工具混淆环境。 您将能够从 Git Bash 和 Windows 命令提示符中使用 Git。

Use Git and optional Unix tools from the Windows Command Prompt
从Windows命令提示符使用Git和可选的Unix工具
Both Git and the optional Unix tools will be added to you PATH
Git和可选的Unix工具都将添加到您计算机的 PATH 中
Warning:This will override Windows tools like “find and sort”.Only use this option if you understand the implications.
警告:这将覆盖Windows工具,如 “ find 和 sort ”。只有在了解其含义后才使用此选项。

win10安装开发环境_第32张图片

Use the OpenSSL library
使用 OpenSSL 库
Server certificates will be validated using the ca-bundle.crt file.
服务器证书将使用ca-bundle.crt文件进行验证。

Use the native Windows Secure Channel library
使用本地 Windows 安全通道库
Server certificates will be validated using Windows Certificate Stores.This option also allows you to use your company’s internal Root CA certificates distributed e.g. via Active Directory Domain Services.
服务器证书将使用Windows证书存储验证。此选项还允许您使用公司的内部根CA证书,例如, 通过Active Directory Domain Services 。

win10安装开发环境_第33张图片

Checkout Windows-style,commit Unix-style line endings
Git will convert LF to CRLF when checking out text files.When committing text files,CRLF will be converted to LF .For cross-pltform projects,this is the recommended setting on Windows (“core.autocrlf” is set to “true”)
在检出文本文件时,Git会将LF转换为CRLF。当提交文本文件时,CRLF将转换为LF。 对于跨平台项目,这是Windows上推荐的设置(“core.autocrlf”设置为“true”)

Checkout as-is , commit Unix-style line endings
Git will not perform any conversion when checking out text files. When committing text files, CRLF will be converted to LF. For cross-platform projects,this is the recommended setting on Unix (“core.autocrlf” is set to “input”)
在检出文本文件时,Git不会执行任何转换。 提交文本文件时,CRLF将转换为LF。 对于跨平台项目,这是Unix上的推荐设置 (“core.autocrlf”设置为“input”)

Checkout as-is,commit as-is
Git will not perform any conversions when checking out or committing text files.Choosing this option is not recommended for cross-platform projects ("core.autocrlf"is set to “false”)
在检出或提交文本文件时,Git不会执行任何转换。对于跨平台项目,不推荐使用此选项(“core.autocrlf”设置为“false”)

win10安装开发环境_第34张图片

Use MinTTY (the default terminal of MSYS2)
Git Bash will use MinTTY as terminal emulator,which sports a resizable window,non-rectangular selections and a Unicode font. Windows console programs (such as interactive Python) must be launched via ‘winpty’ to work in MinTTY.
Git Bash将使用MinTTY作为终端模拟器,该模拟器具有可调整大小的窗口,非矩形选区和Unicode字体。 Windows控制台程序(如交互式Python)必须通过’winpty’启动才能在MinTTY中运行。

Use Windows’ default console window
Git will use the default console window of Windows (“cmd.exe”),which works well with Win32 console programs such as interactive Python or node.js , but has a very limited default scroll-back,needs to be configured to use aUnicode font in order to display non-ASCII characters correctly,and prior to Windows 10 its windows was not freely resizable and it only allowed rectangular text selections.
Git将使用Windows的默认控制台窗口(“cmd.exe”),该窗口可以与Win32控制台程序(如交互式Python或node.js)一起使用,但默认的回滚非常有限,需要配置为使用unicode 字体以正确显示非ASCII字符,并且在Windows 10之前,其窗口不能自由调整大小,并且只允许矩形文本选择。

win10安装开发环境_第35张图片

win10安装开发环境_第36张图片

win10安装开发环境_第37张图片

Enable file system caching
启用文件系统缓存
File system data will be read in bulk and cached in memory for certain operations (“core.fscache” is set to “true”). This provides a significant performance boost.
文件系统数据将被批量读取并缓存在内存中用于某些操作(“core.fscache”设置为“true”)。 这提供了显着的性能提升。

Enable symbolic links
启用符号链接
Enable symbolic links (requires the SeCreateSymbolicLink permission).Please note that existing repositories are unaffected by this setting.
启用符号链接(需要SeCreateSymbolicLink权限)。请注意,现有存储库不受此设置的影响。

win10安装开发环境_第38张图片

4. 安装Docker

5. 安装Redis

redis官网只提供适用于linux系统的安装包, 好在微软自己开发了适用于win10的Redis安装包

  1. 进入:https://github.com/microsoftarchive/redis,点击release

win10安装开发环境_第39张图片

  1. 选择最新版本

win10安装开发环境_第40张图片

  1. 点击.msi文件开始下载

win10安装开发环境_第41张图片

  1. 下载完成后直接安装,选择安装目录为:D:\Redis

  2. 将redis-cli.exe所在目录添加到环境变量中就可以在命令行中使用redis命令了

win10安装开发环境_第42张图片

  1. 运行安装目录里面的 redis-cli.exe 文件,或者命令行键入 :redis-cli.exe -h 127.0.0.1 -p 6379
D:\Redis>redis-cli.exe -h 127.0.0.1 -p 6379
127.0.0.1:6379>

6. 安装JMeter

  1. 下载地址:http://jmeter.apache.org/download_jmeter.cgi

win10安装开发环境_第43张图片

  1. 将下载下来的安装包解压

win10安装开发环境_第44张图片

  1. 配置环境变量
  • 新增JMETER_HOME环境变量,填入解压路径

win10安装开发环境_第45张图片

win10安装开发环境_第46张图片

  • 配置CLASSPATH,在系统变量中找到它,选中,点编辑

win10安装开发环境_第47张图片

填入:

%JMETER_HOME%\lib\ext\ApacheJMeter_core.jar;%JMETER_HOME%\lib\jorphan.jar;%JMETER_HOME%\lib\logkit-2.0.jar;

注意,这段话粘贴进去前后不要有空格

点击确定即可,环境变量就配置好了。

win10安装开发环境_第48张图片

  1. 打开Jmeter,打开解压过的apache-jmeter-5.4.1文件夹,然后进入bin目录,找到jmeter.bat文件打开

win10安装开发环境_第49张图片

打开后会出现两个窗口,一个是命令窗口,一个是jmeter窗口,不要关闭命令窗口,现在就可以使用jmeter了。

使用Jmeter

  • Test Plan右键–>Add–>Threads–>Thread Group

    • Number of Threads(users) 填入数量
    • Loop Count 循环次数
  • Thread Group右键–>Add–>Sampler–>Http request

    win10安装开发环境_第50张图片

  • 查看请求结果

    • ThreadGroup–>Add–>Listener–>View Result Tree、Aggregate Report

win10安装开发环境_第51张图片

1、查看结果树:打开察看结果树,绿色代表测试通过,红色代表测试失败。在此我们可以看到详细的请求头、响应时间、请求参数和返回结果;方便我们进行接口调试

2、查看聚合报告:

Label:每个 JMeter 的 请求都有一个 Name 属性,这里显示的就是 Name 属性的值

#Samples:表示本次测试中一共发出了多少个请求

Average:平均响应时间

Median:也就是 50% 用户的响应时间

90%Line:90% 用户的响应时间

Min:最小响应时间

Max:最大响应时间

Error%:本次测试中出现错误的请求的数量/请求的总数

Throughput:吞吐量——默认情况下表示每秒完成的请求数

KB/Sec:每秒从服务器端接收到的数据量,相当于LoadRunner中的Throughput/Sec

7. 安装nodejs

  • 到官网:https://nodejs.org/en/,下载LTS版本,下载完成后直接双击安装,把安装目录改为D:\Nodejs

  • 命令行验证nodejs和npm版本

node -v
v14.17.3

npm -v
6.14.3
  • 切换淘宝镜像源
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org
npm config get registry

输出**https://registry.npm.taobao.org/**代表切换成功

8. 安装axios

npm install axios

9. 安装Navicat

参照百度网盘->电脑软件->Navicat破解-win10

10. 安装MySql

  • 官网http://www.mysql.com/下载

win10安装开发环境_第52张图片

win10安装开发环境_第53张图片

win10安装开发环境_第54张图片

点击下拉框选择5.7.13版本

win10安装开发环境_第55张图片

win10安装开发环境_第56张图片

  1. 下载完成后双击下载下来的文件

win10安装开发环境_第57张图片

  • 我只需要安装mysql server,所以选择最后一项“Custom”,选择Custom之后左边的安装流程和右边的描述文字会改变,然后点击"Next"按钮继续

win10安装开发环境_第58张图片

  • 然后点击绿色的向右箭头,将当前Product移动需要安装的列表,然后在右边展开“MySQL Server 5.7.14 - X64”项,取消“Development Components”的勾选(因为我们只需要安装mysql server),之后点击“Next”按钮进入下一步

win10安装开发环境_第59张图片

win10安装开发环境_第60张图片

  • 点击“Execute”(执行)开始安装,安装过程中会显示安装的Progress(进度),等待安装完成后Status会显示Complete,mysql图标前会出现一个绿色的勾,然后点击“Next”按钮进入产品配置界面

win10安装开发环境_第61张图片

win10安装开发环境_第62张图片

  • Config Type选择“Development Machine”,选择此项将使用较小的内容来运行我们的mysql server,对应小型软件、学习是完全够用的。之后“Next”

win10安装开发环境_第63张图片

  • 在Root Account Password设置数据库root账号的密码,我填的是root所以程序提醒我密码强度为弱,我们需要牢记这个密码,然后点击“Next”

win10安装开发环境_第64张图片

  • 这里可以设置mysql server的名称和是否开机启动,我的名称没改,默认为“MySQL57”,取消了开机启动,其它的没改,点击“Next”

win10安装开发环境_第65张图片

win10安装开发环境_第66张图片

  • 此界面将之前设置的配置内容应用到我们的mysql server,点击“Execute”,等待完成就可以了

win10安装开发环境_第67张图片

  • 配置完成,点击“Finish”完成配置环节

win10安装开发环境_第68张图片

  • 配置完成后将回到安装程序,我们点击“Next”继续

win10安装开发环境_第69张图片

  • 提示我们安装完成,点击“Finish”

win10安装开发环境_第70张图片

  • 配置mysql环境变量

说明:给mysql配置环境变量后我们就可以在cmd里运行mysql(开启、停止等操作)

  1. 和其他环境变量的配置方法一样,我们打开环境变量配置窗口(组合键win+Pause -> 更改设置 -> 系统属性里选择“高级” -> 环境变量)

  2. 选中系统变量中的“path”,在path值开头处输入mysql安装目录下的bin文件夹所在路径:C:\Program Files\MySQL\MySQL Server 5.7\bin,保存退出

    注意:mysql server安装的默认路径为:C:\Program Files\MySQL\MySQL Server 5.7

win10安装开发环境_第71张图片

  1. 测试是否配置成功:打开cmd,输入“ mysql -u root -p”回车,然后输入mysql安装时设置的root账号的密码(root),若提示“Welcome to the MySQL monitor.”说明配置成功了。

win10安装开发环境_第72张图片

启动mysql

是的,到现在我们还没有启动我们的mysql!那么要怎么启动呢?

(基于已配置环境变量的情况)

  1. 以管理员的身份运行cmd,输入“net start mysql57”回车(MySQL57是配置mysql server时填写的服务器名称,cmd里不区分大小写也可以使用),输入“ mysql -u root -p”回车

win10安装开发环境_第73张图片

  1. 启动成功后我们便可以在任务管理器的进程里看到“mysqld.exe”的进程了

win10安装开发环境_第74张图片

附:

若执行命令时提示:服务名无效。请键入 NET HELPMSG 2185 以获得更多的帮助。

解决办法:
在 mysql bin目录下 以管理员的权限 执行 mysqld -install命令

附卸载mysql服务的方法。

1、以管理员的权限 net stop mysql ,关闭mysql服务

2、以管理员的权限 mysqld -remove ,卸载mysql服务

3 、修改mysql密码:首先登录MySQL,执行 set password for root@localhost = password(‘123’);

Navicat 测试是否安装成功

我们使用MySQL管理软件(Navicat for MySQL)进行连接测试,确保mysql已经可以使用

  1. 打开Navicat for MySQL

  2. 新建一个连接,填写连接信息:

    连接名称:用于区分不同的连接,自己命名即可

    主机名:localhost

    端口:3306

    用户名:root

    密码:root(之前配置mysql的时候填写的密码)

win10安装开发环境_第75张图片

11.安装postman

  1. https://www.postman.com/downloads/

win10安装开发环境_第76张图片

12. windows运行Ubuntu下创建的React项目

直接运行会报错:

win10安装开发环境_第77张图片

解决办法:

  • 把之前的node_module目录删除
rimraf node_modules

#没有rimraf的话先安装 npm install rimraf -g
  • 重新生成node_module
npm install
npm start

附:

  • 在linux下可以使用rm -rf node_modules来快速删除文件夹。
rm -rf node_modules
  • 在windows也有类似命令。

    • 在你的项目目录下打开cmd ,使用rd /s /q node_modules可以快速删除
    rd /s /q node_modules
    
    • 如果是powershell,使用rd -r node_modules命令
    rd -r node_modules
    

    但是推荐利用npm,删除速度最快

1、安装(i)

输入: npm install [][-g]/[--save][-dev]

2、更新(up, upgrade)

输入:npm update [][-g]/[--save][-dev]

3、卸载(remove、rm、r, un、unlink)

输入:npm uninstall [][-g]/[--save][-dev]

命令 node_modules package.json npm install npm install --production
npm install
npm install -g
npm install --save dependencies
npm install --save-dev devDependencies

13. Maven的安装与配置

安装Maven

  1. https://maven.apache.org/download.cgi

win10安装开发环境_第78张图片

  1. 下载完成后,选择一个路径进行解压,我是在:D:\JetBrains\Maven\apache-maven-3.8.1-bin

  2. 然后配置环境变量

    • 新建系统变量:MAVEN_HOME = D:\JetBrains\Maven\apache-maven-3.8.1-bin\apache-maven-3.8.1
    • 系统变量:path = %MAVEN_HOME%\bin

win10安装开发环境_第79张图片

win10安装开发环境_第80张图片

  1. 然后win+R 运行cmd 输入 mvn -version,如图所示则配置成功

win10安装开发环境_第81张图片

配置Maven

  1. 在D:\JetBrains\Maven\apache-maven-3.8.1-bin\apache-maven-3.8.1\conf下找到settings.xml文件,打开

  2. 找到第52行,这里是maven默认的仓库

win10安装开发环境_第82张图片

  1. 我们复制第53行
<localRepository>/path/to/local/repolocalRepository>

将它拿到注释外并将中间的内容改成你需要的路径,这里的路径随便设置,注意这里是正斜杠

<localRepository>D:/JetBrains/Maven/repositorylocalRepository>

win10安装开发环境_第83张图片

  1. 因为国外的服务器下载jar包很慢所以我们改为阿里云服务器(大约在150行左右),这两个仓库只用选一个(根据大家反馈建议使用第一个,第二个在有的版本可能会出现warning)
 
    <mirror>
        <id>alimavenid>
        <mirrorOf>centralmirrorOf>
        <name>aliyun mavenname>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/url>
    mirror>
    或者
    <mirror>
        <id>nexus-aliyunid>
        <mirrorOf>*mirrorOf>
        <name>Nexus aliyunname>
        <url>http://maven.aliyun.com/nexus/content/groups/publicurl>
    mirror>

如图,要夹在两个mirrors标签之间

win10安装开发环境_第84张图片

  1. 在最后配置jdk,也要夹在两个profiles标签之间(我这里使用的为jdk8)

     
    <profile>
        <id>jdk-1.8id>
        <activation>
            <activeByDefault>trueactiveByDefault>
            <jdk>1.8jdk>
        activation>
    
        <properties>
            <maven.compiler.source>1.8maven.compiler.source>
            <maven.compiler.target>1.8maven.compiler.target>
            <maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>
        properties>
    profile>
    

win10安装开发环境_第85张图片

  1. 配置完成,在命令行输入mvn help:system测试,看到下载链接里面是ailiyun的链接表示配置成功

    在这里插入图片描述

  2. 在IDEA的File–>settings–>Build,Execution,Deployment–>Build Tools–>Maven中,将Maven home path、User setting file、Local repository,改为上面下载的本地Maven仓库的位置

win10安装开发环境_第86张图片

你可能感兴趣的:(win10开发环境安装,windows)