VSCode的配置 PyCharm的享受

May 20, 2021, 8:55 p.m.

read: 1471

0x01

.vscode/settings.json

{
    "python.pythonPath": "Python解释器的路径",
    "python.envFile": "${workspaceFolder}/.vscode/.env"
}

.vscode/.env

PYTHONPATH="当前项目的绝对路径"

.vscode/launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
             "name": "Python: Current File",
             "type": "python",
             "request": "launch",
             "program": "${file}",
             "console": "integratedTerminal",
             "cwd": "${fileDirname}"
        }
    ]
}




音频编码简介

编解码器 名称 无损 使用说明 MP3 MPEG 第三层音频 否 省略 FLAC 免费无损音频编解码器 是 信息流要求使用 16 位或 24 位的位深 LINEAR16 线性 …

Golang安装

文章标题:Golang安装文章内容:方案一:apt安装# 安装的不是最新的 sudo apt-get install golang-go 方案二:预编译二进制安装# 下载地址替换成最新的安装包 wg…

此站点由 ASP.NETIIS 驱动 | © 2018-2023 hupeng.me. All Rights Reserved.