Merge pull request #495 from AndreMiras/feature/document_venv_install
📚 Advise on using a venv
This commit is contained in:
commit
46647de39e
2 changed files with 6 additions and 1 deletions
|
@ -23,6 +23,11 @@ These recipes are not ported to the new toolchain yet:
|
|||
|
||||
## Installation & requirements
|
||||
|
||||
Before we start, we strongly advise to use a Python virtual environment to install Python packages.
|
||||
|
||||
python3 -m venv venv
|
||||
. venv/bin/activate
|
||||
|
||||
Install [Kivy for iOS from PyPI](https://pypi.org/project/kivy-ios) with pip like any Python package.
|
||||
|
||||
pip3 install kivy-ios
|
||||
|
|
2
setup.py
2
setup.py
|
@ -16,7 +16,7 @@ def recursive_include(module):
|
|||
|
||||
setup(
|
||||
name="kivy-ios",
|
||||
version="1.1.2",
|
||||
version="1.1.2.dev0",
|
||||
description="Kivy for iOS",
|
||||
long_description=read("README.md"),
|
||||
long_description_content_type="text/markdown",
|
||||
|
|
Loading…
Reference in a new issue