安装 #
安装Python #
安装Ruia
前,需要你的系统环境安装有Python3.6+环境,由于Ruia
是第三方包,所以还需要你提前装有Python
的包管理工具pip。
如果确认准备好环境,请进入终端,做环境检查:
[~] python --version
Python 3.7.3
[~] pip --version
pip 21.0.1 from ~/anaconda3/lib/python3.7/site-packages/pip (python 3.7)
安装Ruia #
请进入所在项目环境,如果没有特定环境就默认使用的是系统全局Python
环境,然后利用pip
进行安装:
# For Linux & Mac
pip install -U ruia[uvloop]
# For Windows
pip install -U ruia
# New features
pip install git+https://github.com/howie6879/ruia
校验 #
让我们看看ruia
是否安装成功:
[~] python
Python 3.7.3 (default, Mar 27 2019, 16:54:48)
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import ruia
>>> ruia.__version
'0.8.0'
上述ruia
具体版本号请根据实际情况校验。