Git_ex2 <<
Previous Next >> SE
Python
可攜程式套件:
portable_2026.7z (387MB)
解開壓縮後,雙點擊 start_miniconda3.bat 啟動可攜系統,雙點擊 stop.bat 關閉可攜系統。
可攜系統啟動後,在命令列執行 conda activate y:\envs\cmsimde 可進入能執行 CMSiMDE 的環境。
若希望可攜系統啟動直接進入 cmsimde 環境,可將 start_miniconda3.bat 檔案中第 98 行: call "%CONDA_ROOT%\Scripts\activate.bat" %ENV_NAME% 更換為 call "%CONDA_ROOT%\Scripts\activate.bat" %Disk%:\envs\cmsimde。
cmsimde 虛擬環境是採下列方式建立:
conda create -p ./envs/cmsimde python=3.13 (指定使用 Python 3.13 建立位於 ./envs/cmsimde 的虛擬環境)
conda activate y:\envs\cmsimde (利用 conda 指令切換到 cmsimde 虛擬環境)
conda install -c conda-forge flask flask_cors bs4 lxml pelican markdown gevent (安裝使用 cmsimde 所需要的 Python 模組)
之後就可以 cd tmp/your_hw_repository 後,以 cms 批次檔案指令啟動網頁編輯。
Learn Python with Reeborg
https://reeborg.ca/docs/en/
https://aroberge.gitbooks.io/reeborg-s-world-advanced-world-creation/content/
https://github.com/loukhin/Reeborg
https://github.com/aroberge/reeborg-howto
https://github.com/LeeRenJie/100-days-of-code-in-python
Self-taught programmer
Python code for Artificial Intelligence - Foundations of Computational Agents
https://artint.info/AIPython/aipython.pdf
Program AI with Python
AI with Python
Using Python for Artificial Intelligence
Machine Learning with Python Tutorial
Genetic Algorithms:
ga_1.py (from https://www.geeksforgeeks.org/genetic-algorithms/)
https://medium.com/analytics-vidhya/genetic-algorithm-494ac5be18bb
https://medium.com/@LeonFedden/evolving-solutions-with-genetic-algorithms-e3122473a35f
Apply GA to https://github.com/mdecycu/cs101
Git_ex2 <<
Previous Next >> SE