# 检测客户端 **Repository Path**: thingschain/detection_client ## Basic Information - **Project Name**: 检测客户端 - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 依赖库安装 ## 通过requirements安装 ``` pip install -r requirements.txt ``` ## 导出requirements依赖 ``` pip freeze > requirements.txt ``` ## 单独安装 ### kivy Now that python is installed, open the Command line and make sure python is available by typing python --version. Then, do the following to install. 1. Ensure you have the latest pip and wheel: ``` python -m pip install --upgrade pip wheel setuptools ``` 2. Install the dependencies (skip gstreamer (~120MB) if not needed, see Kivy’s dependencies): ``` python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew python -m pip install kivy.deps.gstreamer ``` > Note > If you encounter a MemoryError while installing, add after pip install an option –no-cache-dir. For Python 3.5+, you can also use the angle backend instead of glew. This can be installed with: ``` python -m pip install kivy.deps.angle ``` 3. Install kivy: ``` python -m pip install kivy ``` 4. (Optionally) Install the kivy examples: ``` python -m pip install kivy_examples ``` The examples are installed in the share directory under the root directory where python is installed. That’s it. You should now be able to import kivy in python or run a basic example if you installed the kivy examples: ``` python share\kivy-examples\demo\showcase\main.py ```