文章

开发环境清单

AUTOGEN 142385220f9b4e8caf2c156ca52e0d12

开发环境清单

开发环境清单介绍了基本技术栈所需的软件包和基本设置。

软件

软件列出了语言无关的基本软件。

1.1 基本IDE/Editor设置

Notepad++ (Notepad–)

https://notepad-plus-plus.org/downloads/v8.6.2/ https://gitee.com/cxasm/notepad–/releases/tag/v2.13

Visual Studio Code

https://code.visualstudio.com/

7Zip

https://7-zip.org/

DrawIO

https://github.com/jgraph/drawio-desktop/releases/tag/v23.0.2

OpenVPN

https://openvpn.net/community-downloads/

Everything

https://www.voidtools.com/zh-cn/

Git

https://git-scm.com/download/win

MobaXterm

https://mobaxterm.mobatek.net/

OBS Studio

https://obsproject.com/

VirtualBox

https://www.virtualbox.org/wiki/Downloads

Postman

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

https://navicat.com.cn/

ToDesk

https://www.todesk.com/

UltraISO

etc

uTools

https://u.tools/

VeraCrypt

https://www.veracrypt.fr/code/VeraCrypt/

WinSCP

https://winscp.net/eng/index.php

WireShark

https://www.wireshark.org/download.html

Clash

https://archive.org/download/clash_for_windows_pkg

1.2 安全套件

PGP

Gpg4win - Secure email and file encryption with GnuPG for Windows

ThunderBird

Thunderbird — 解放收件箱 — Thunderbird

VMware Workstation

https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware+Workstation+Pro

PuTTY

Download PuTTY: latest release (0.81) (greenend.org.uk)

Web通用开发环境设置

1. Nginx

nginx: download

2. Tomcat

Apache Tomcat® - Apache Tomcat 9 Software Downloads

Python开发环境设置

CPython 3.9

python-3.9.6-amd64.zip Python仅限Windows安装

关于pip的清华源

https://mirrors.tuna.tsinghua.edu.cn/help/pypi/ PyPI 镜像在每次同步成功后间隔 5 分钟同步一次。 pip 临时使用

1
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

注意,simple 不能少, 是 https 而不是 http 设为默认 升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

1
2
python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

如果您到 pip 默认源的网络连接较差,临时使用本镜像站来升级 pip:

1
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip

Anaconda

https://www.anaconda.com/download-success

Python

https://www.python.org/

Pypy

https://www.pypy.org/

Conda创建Python环境

作者推荐2022年10月版本,并关闭杀毒软件,或利用火绒等将安装环境隔离为白名单

可能会存在SSL Error OpenSSL appears to be unavailable on …. 在anaconda中找到~\Library\bin libcrypto-1_1-x64.dll libssl-1_1-x64.dll 两个文件 复制到~\Anaconda3\DLLs

查看当前虚拟环境

1
2
# Anaconda/Scripts/
conda info -e
1
conda create --name myenv python=3.8

删除环境

1
conda remove -n myenv

Java开发环境设置

C/C++开发环境设置

Mingw64

mingw64.zip

nasm

nasm-2.15.05-win64.zip nasm-2.15.05-win32.zip

包管理器

  1. Node
  2. fnm
  3. nvm
本文由作者按照 CC BY 4.0 进行授权