This commit is contained in:
Lu Ken 2023-12-24 09:47:53 +08:00 committed by GitHub
commit 70cd36e9f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View File

@ -29,6 +29,10 @@ This project is based on the Python programming language and primarily utilizes
conda create -n StreetFighterAI python=3.8.10 conda create -n StreetFighterAI python=3.8.10
conda activate StreetFighterAI conda activate StreetFighterAI
# Fix the version of wheel and setuptools to avoid gym compiling issue
pip install wheel==0.38.4
pip install setuptools==65.0.0
# Install Python libraries # Install Python libraries
cd [parent_directory_of_project]/street-fighter-ai/main cd [parent_directory_of_project]/street-fighter-ai/main
pip install -r requirements.txt pip install -r requirements.txt

View File

@ -29,6 +29,10 @@
conda create -n StreetFighterAI python=3.8.10 conda create -n StreetFighterAI python=3.8.10
conda activate StreetFighterAI conda activate StreetFighterAI
# 设置可用的wheel和setuptools以避免gym安装问题
pip install wheel==0.38.4
pip install setuptools==65.0.0
# 安装 Python 代码库 # 安装 Python 代码库
cd [项目上级文件夹]/street-fighter-ai/main cd [项目上级文件夹]/street-fighter-ai/main
pip install -r requirements.txt pip install -r requirements.txt

View File

@ -29,6 +29,10 @@ Este proyecto se basa en el lenguaje de programación Python y utiliza principal
conda create -n StreetFighterAI python=3.8.10 conda create -n StreetFighterAI python=3.8.10
conda activate StreetFighterAI conda activate StreetFighterAI
# Fix the version of wheel and setuptools to avoid gym compiling issue
pip install wheel==0.38.4
pip install setuptools==65.0.0
# Instalar bibliotecas de Python # Instalar bibliotecas de Python
cd [directorio_padre_del_proyecto]/street-fighter-ai/main cd [directorio_padre_del_proyecto]/street-fighter-ai/main
pip install -r requirements.txt pip install -r requirements.txt