Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 676 Bytes

install.md

File metadata and controls

36 lines (23 loc) · 676 Bytes

安装指南

环境配置

pip环境:

# pip env
python -m venv .venv
.venv/Scripts/activate.bat

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

conda环境:

# conda env
conda create -n opt_env python=3.9

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

算法运行

cd src
python ALGO.py

参考资料