uos安装evennia 作者: final 时间: 2024-12-04 分类: 默认分类 备注 编译 twisted 也许需要 python-dev(ubuntu) 2020-10月之后 可能需要 --use-feature=2020-resolver #### 安装git ``` apt-get install git ``` #### 安装venv ``` apt-get install python3-venv ``` ##### Python3 内置了venv模块,首先创建项目目录,进入目录后,执行 ```python #创建虚拟环境 python3 -m venv pymud #执行 . pymud/bin/activate #国内镜像 git clone https://github.com/evennia/evennia.git #也可以使用官方git git clone https://gitee.com/mudcn/evennia.git #进入目录 cd evennia #使用国内pip源 pip3 install -e . -i https://pypi.tuna.tsinghua.edu.cn/simple/ #使用清华源 ``` ##### 创建mud ``` cd ../ evennia --init mymud ``` ##### mud初始化 ``` cd mymud evennia migrate ``` ##### 运行evennia 第一次运行需要设置管理员信息 ``` evennia start ``` #### 运行成功