- Notifications
You must be signed in to change notification settings - Fork33
Python framework for processing Universal Dependencies data
License
NotificationsYou must be signed in to change notification settings
udapi/udapi-python
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Python framework for processing Universal Dependencies data
- You need Python 3.6 or higher.
- If theufal.udpipe parser is needed,make sure you have a C++11 compiler (e.g.g++ 4.7 or newer)and install UDPipe with
pip3 install --user --upgrade ufal.udpipe
.
Let's clone the git repo to~/udapi-python/
, install dependenciesand setup$PATH
and$PYTHONPATH
accordingly.
cdgit clone https://github.com/udapi/udapi-python.gitpip3 install --user -r udapi-python/requirements.txtecho'## Use Udapi from ~/udapi-python/ ##'>>~/.bashrcecho'export PATH="$HOME/udapi-python/bin:$PATH"'>>~/.bashrcecho'export PYTHONPATH="$HOME/udapi-python/:$PYTHONPATH"'>>~/.bashrcsource~/.bashrc# or open new bash
This is similar to the above, but installs Udapi from PyPI to the standard (user) Python paths.
pip3 install --user --upgrade udapi
Tryudapy -h
to check it is installed correctly.If it fails, make sure yourPATH
includes the directory wherepip3
installed theudapy
script.Usually, this results in
export PATH="$HOME/.local/bin/:$PATH"
About
Python framework for processing Universal Dependencies data
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors15
Uh oh!
There was an error while loading.Please reload this page.