You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* suggest `pip install -e .` instead of editing the PYTHONPATH and PATH environment variables (which does not work nicely in Windows and/or VSCode)
* suggest venv instead of `--user`
* suggest `pip` instead of `pip3` (Python2 is not supported anyway)
* delete details about the C++11 compiler for ufal.udpipe
Copy file name to clipboardExpand all lines: README.md
+7-11Lines changed: 7 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,27 +7,23 @@ Python framework for processing Universal Dependencies data
7
7
8
8
## Requirements
9
9
- You need Python 3.9 or higher.
10
-
-If the [ufal.udpipe](https://pypi.python.org/pypi/ufal.udpipe/) parser is needed,
11
-
make sure you have a C++11 compiler (e.g. [g++ 4.7 or newer](.travis.yml#L9))
12
-
and install UDPipe with `pip3 install --user --upgrade ufal.udpipe`.
10
+
-It is recommended to install Udapi in a Python virtual environment.
11
+
- If you need the [ufal.udpipe](https://pypi.python.org/pypi/ufal.udpipe/) parser (to be used from Udapi)
12
+
install it (with `pip install --upgrade ufal.udpipe`).
13
13
14
14
## Install Udapi for developers
15
-
Let's clone the git repo to `~/udapi-python/`, install dependencies
16
-
and setup `$PATH` and `$PYTHONPATH` accordingly.
15
+
Let's clone the git repo e.g. to `~/udapi-python/` and make an [editable installation](https://setuptools.pypa.io/en/latest/userguide/development_mode.html)
0 commit comments