Sunyata

To do a good job, one must first sharpen one's tools.


I hope this document can assist newcomers in quickly configuring a development environment and help experienced developers improve their work efficiency.

Initial Preparation

  1. Install the Visual Studio Code (VSCode) editor.
    You can download it here: https://code.visualstudio.com/Download

    • Run VSCode and click on the “Extensions” in the sidebar (shortcut Ctrl + Shift + X).
    • You can search and install the language pack you need (e.g. Chinese/Russian).
    • Then, install the Python and Pylance extensions.
  2. Install Python (version >= 3.8).
    You can download it here: https://www.python.org/downloads/windows/

    • After installation, open a command prompt (press Win + R, then run cmd).
    • Install the Bladex package using the following command:
      pip install Bladex
      pip is a Python package management tool, built into Python 3.4 and later versions.

After completing these steps, you’ll soon be able to enjoy Bladex’s code autocompletion and type hints 🎉

🚀 Getting Started

Read more »


我希望此文档可帮助无改装经验者快速配置开发环境,或帮助有经验的开发者提高工作效率。

初始准备

  1. 安装 Visual Studio Code(VSCode) 编辑器
    下载:https://code.visualstudio.com/Download
    • 运行 VSCode,点击侧边栏的扩展(快捷键Ctrl + Shift + X
      你可以搜索并安装你需要的语言包(例如 Chinese/Russian)
      然后安装PythonPylance扩展
  2. 安装 Python(版本>=3.8)
    下载:https://www.python.org/downloads/windows/
    • 安装完毕后打开命令行窗口(按 Win + R 后运行cmd
      然后在命令行中安装Bladex
      pip install Bladex
      pip 是 Python 包管理工具,内置于 Python3.4 及之后版本

做完这些,很快就可以享受 Bladex 的代码自动补全和类型提示了 🎉

🚀 快速开始

Read more »
0%