Git <<
Previous Next >> Flask
CMSiMDE
可攜 Python 程式環境,使用 miniconda3:
Miniconda is a free, miniature installation of Anaconda Distribution that includes only conda, Python, the packages they both depend on, and a small number of other useful packages.
If you need more packages, use the conda install command to install from thousands of packages available by default in Anaconda’s public repo, or from other channels, like conda-forge or bioconda.
授權方式 BSD 3-Clause License(自由軟體)
是否開源 是(可以查閱與修改原始碼)
是否免費 是(個人與商業皆免費使用)
用途限制 無限制,可用於學術、商業、開發、產品部署等
提供單位 Anaconda, Inc.
官方網站: https://www.anaconda.com/download/success
miniconda3.7z
start_miniconda3_bat.txt
啟動 miniconda3 虛擬環境後,在命令列中執行下列批次檔案,可以導入 NX2312 與 Webots 所需的 Python 模組目錄設定。
add_nx_webots_pythonpath_bat.txt
check python path: python -c "import sys; print(sys.executable)"
啟動後 Python 環境位於 base,利用下列指令建立 cmsimde 虛擬環境:
conda create -p ./envs/cmsimde python=3.13
conda activate y:\envs\cmsimde
conda install -c conda-forge flask flask_cors bs4 lxml pelican markdown gevent
之後就可以 cd tmp/your_hw_repository 後,以 cms 啟動網頁編輯。
Git <<
Previous Next >> Flask